如何在Wordpress中从站点地图中排除页面或帖子?
我使用这个代码来排除与网站地图相关的特定类别或标签的帖子。但不能工作
function sitemap_exclude_taxonomy( $value, $taxonomy ) {
if ( $taxonomy == 'xxx' ) return true;
}
add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );发布于 2018-11-18 21:08:18
您可以按照这里提到的步骤从站点地图中排除特定的页面/帖子。https://kb.yoast.com/kb/sitemap-shows-excluded-posts-pages/
https://stackoverflow.com/questions/53353667
复制相似问题