對於 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 );
你還可以選擇用外掛來實現禁用: