实用的 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

文章没看懂?代码不会用?需要帮助您可以

小新 的头像