實用的 WordPress ICP 備案許可管理器

WordPress 代碼段:禁用全站文章作者頁面

對於 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 );

你還可以選擇用插件來實現禁用:

Disable Author Archives

文章沒看懂?代碼不會用?需要幫助您可以

小新 的頭像