Tag Archives: wp291

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

找到模板中首页模板,通常为index.php 找到如下面这行代码 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 在这行代码前面加上 <?php query_posts(‘cat=-catid’); ?> 把catid换成你不想显示在首页的栏目id,注意前面有个-

Posted in Code | Tagged , | 2 Comments [117 views]