如果需要过滤器解决方案:
add_filter( \'wpseo_sitemap_exclude_post_type\', \'your_prefix_exclude_cpt_from_sitemap\', 10, 2 );
function your_prefix_exclude_cpt_from_sitemap( $value, $post_type ) {
$post_types_to_exclude = [
\'post_type_one\',
\'post_type_two\'
];
if ( in_array($post_type, $post_types_to_exclude) ) {
return true;
}
}
您可以使用;post\\u types\\u to\\u exclude“发布类型”;数组定义要从站点地图中排除的多个帖子类型。