禁用站点地图很容易,只需将此行添加到functions.php
:
add_filter( \'wp_sitemaps_enabled\', \'__return_false\' );
删除特定帖子如下:
add_filter(
\'wp_sitemaps_posts_query_args\',
function( $args, $post_type ) {
if ( \'post\' !== $post_type ) {
return $args;
}
$args[\'post__not_in\'] = isset( $args[\'post__not_in\'] ) ? $args[\'post__not_in\'] : array();
$args[\'post__not_in\'][] = 123; // 123 is the ID of the post to exclude.
return $args;
},
10,
2
);
有很多方法可以
customize the sitemap 如果您更愿意使用WP原生方式而不是插件。