正常情况下,主题的首页循环调用最新文章列表用的都是这一句代码
[cce lang=”php”]<?php if (have_posts()) : while (have_posts()) : the_post(); ?> [/cce]
所以,如果不想在首页显示某一个分类的文章,只需要在这句代码下面再加一句
[cce lang=”php”]<?php if (is_home() && in_category(‘3’) ) continue; ?> [/cce]
把其中的 in_category(‘3’) 这里的数字改成你不想显示出来的分类的ID就可以了
Reference:http://faq.wopus.org/question/528/
Access Date:2012/09/11