Answers:
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文档页面。