标签不会创建重复的帖子,因此它们出现在网站地图中损害SEO的可能性很小。
您可以在分类法网站地图的返回中添加过滤器以删除标记。这只是我的一次快速尝试。我还没有测试它,但它至少应该为工作提供一个基础。
function remove_low_tags($taxonomies) {
//create a new array of tags with count above 2
array $allowed_tags;
//loop through current array of tags and add them to $allowed_tags if they are > 2
foreach ($taxonomies as $tags) {
if (count($tags) > 2) {
$allowed_tags[] = $tags;
}
}
return $allowed_tags;
}
add_filter(\'wp_sitemaps_taxonomies\', \'remove_low_tags\');