wordpress禁止某分类在首页显示的处理

添加了新的分区,不想让让这个区的新文章显示在首页。
在首页模板里找到

<?php while ( have_posts() ) : the_post(); ?>

一个while循环,加载文章列表的,在这个循环体第一句前面加上:

<?php if (is_home() && in_category(‘catID’) ) continue; ?>

catID代表分类id,把这个数字放上,跳出这一遍循环

<?php get_template_part( ‘content’, get_post_format() ); ?>
<?php endwhile; ?>

正常加载被允许分类的文章摘要,结束循环。