WordPress如何禁用分类页、tag页、日期归档、作者页、附件页等

function disable_uneeded_archives() {
	if( is_category() || is_tag() || is_date() || is_author() || is_attachment() ) {
		header("Status: 404 Not Found");
		global $wp_query;
		$wp_query->set_404();
		status_header(404);
		nocache_headers();
	}
}
add_action('template_redirect', 'disable_uneeded_archives');

配置在function.php,按需自己修改。不要全部直接复制粘贴。

标签TAGS

与标签相关的文章

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

最新文章

热门文章

其他文章