复制下面的代码到你的主题functions.php文件(末尾?>前即可): function exclude_category_home( $query ) { if ( $query->is_home ) { $query->set( 'cat', '-32' ); } return $query; } add_filter( 'pre_get_posts', 'exclude_category_home' ); 将第三行-32替换成需要屏蔽的分类ID 转自知更鸟 分类ID可以从地址栏中看到(下图红框) 亲测有效