답변:
Yoast의 WPSEO 플러그인에는 'wpseo_title'이라는 제목의 필터가 있습니다. 다음과 같이 추가해야합니다.
add_filter('wpseo_title', 'filter_product_wpseo_title');
function filter_product_wpseo_title($title) {
if( is_singular( 'product') ) {
$title = //your code
}
return $title;
}
WordPress SEO API 문서 페이지 에서 자세한 내용을 확인 하십시오 .