Yoast Support为我提供了以下参考:
https://yoast.com/wordpress/plugins/seo/api/
使用以下过滤器调用我自己的函数,我能够根据动态内容更改标题中的所有内容。
add_filter(\'wpseo_title\', \'setPageTitle\', 10);
add_filter(\'wpseo_metadesc\', \'setMetaDesc\', 10);
add_filter(\'wpseo_canonical\', \'setCanonical\', 10);
add_filter(\'wpseo_opengraph_image\', \'setOG_Image\', 10);
add_filter(\'the_title\', \'setTitle\', 10);