2010年05月13日   WordPress, 头条   15,267 次浏览
有时候我们需要将最新文章中某一分类中的文章隐藏起来留做其他用,那么怎么在WordPress最新文章中不显示某分类了?
请看下面的代码:
<li class="widget widget_recent_comments"> <h2 class="widgettitle">最新文章</h2> <ul> <?php query_posts('showposts=8&cat=-21'); ?> <?php while (have_posts()) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"> <?php the_title(); ?></a></li> <?php endwhile; ?> </ul> </li> |
其中最关键的就是“cat=-21”了,前面为负号意思就是分类ID为21的不显示。
好了,怎么得到分类ID应该不用多说了吧。
>>> Hello World <<<
这篇内容是否帮助到你了呢?
如果你有任何疑问或有建议留给其他朋友,都可以给我留言。