要从自动生成的标记存档页面重定向,可以检查is_tag()
在template_redirect
操作挂钩,并使用重定向wp_redirect()
如果是:
add_action( \'template_redirect\', function() {
if ( is_tag() ) {
// Currently redirects to the site\'s home page.
wp_redirect( \'/\' );
// Use the 301 Permanent redirect if desired.
// wp_redirect( \'/\', 301 );
exit;
}
} );
要从WordPress生成的站点地图中排除标记(问题中的计划B),可以使用
wp_sitemaps_taxonomies
滤器
add_filter( \'wp_sitemaps_taxonomies\', function( $taxonomies ) {
if ( ! empty( $taxonomies[\'post_tag\'] ) ) {
unset( $taxonomies[\'post_tag\'] );
}
return $taxonomies;
} );