wp首页不显示某一个分类的文章

找到模板中首页模板,通常为index.php
找到如下面这行代码

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

在这行代码前面加上

<?php query_posts('cat=-catid'); ?>

把catid换成你不想显示在首页的栏目id,注意前面有个-

This entry was posted in Code and tagged , . Bookmark the permalink. [117 views]

Related Posts

2 Responses to wp首页不显示某一个分类的文章

  1. 这个很有用,比如我的博客,把焦点分类就不在首页显示。
    但是如果只显示某一分类文章呢?

  2. 支持喽!博客不错!