对于 SEO 站群来说,作者的存档页面是完全没有必要的,这里我们可以将其禁用,以便减少网站不必要的链接。
将文章的作者存档页面重定向至网站首页。
if ( ! defined( 'ABSPATH' ) ) exit;
/* Return status code 404 for existing and non-existing author archives. */
add_action( 'template_redirect',
function() {
if ( isset( $_GET['author'] ) || is_author() ) {
global $wp_query;
$wp_query->set_404();
status_header( 404 );
nocache_headers();
}
}, 1 );
/* Remove author links. */
add_filter( 'author_link', function() { return '#'; }, 99 );
add_filter( 'the_author_posts_link', '__return_empty_string', 99 );
你还可以选择用插件来实现禁用:





