Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 yoast-seo 插件删除某个页面的 og:description 和 twitter:description 标签?
我自己解决了:
add_filter("wpseo_opengraph_desc", "remove_yoast_og"); add_filter("wpseo_twitter_description", "remove_yoast_og"); function remove_yoast_og($description) { if (is_page(1093)) { return false; } return $description; }