Skip to content

wordpress首页中不显示指定分类文章

约 102 字小于 1 分钟

wordpress

2010-12-06

想要如题效果,按以下方法,轻松搞定 在类似

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

语句,即在 while循环之后加入如下语句

<?php if ((in_category('10')||in_category('11')||in_category('12')) && is_home() ) continue; ?>

红色部分就是可自定义添加的,括号中的为指定分类的ID