找到你网站WordPress主题文件的位置,比如: /wp-content/themes/你的主题模板/functions.php

在后面,复制,添加以下代码:

//在首页中排除某些分类
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-3, -22' ); //你要排除的分类ID
}
return $query;
}
add_filter( 'pre_get_posts', 'exclude_category_home' );

首页就不显示:分类ID3的文章,分类ID22的文章,问题就解决了