如何在 Wordpress 中从站点地图中排除页面或帖子?
我正在使用此代码从站点地图中排除与特定类别或标签相关的帖子。但不工作
function sitemap_exclude_taxonomy( $value, $taxonomy ) {
if ( $taxonomy == 'xxx' ) return true;
}
add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );
您可以按照此处提到的步骤从站点地图中排除特定页面/帖子。 https://kb.yoast.com/kb/sitemap-shows-excluded-posts-pages/