回答:
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ドキュメントページをご覧ください。