然后在另一个循环下面的特色帖子将排除特色帖子

时间:2010-05-23 16:21:55

标签: wordpress

嗨我想在wordpress上做一些事情, 我的问题是如何在另一个wordpress循环中排除特色帖子

感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

第一步:为想要推荐的帖子创建一个类别。

第二步:exclude that category from the loop,就像这样(在下面的代码中,类别3和类别8都被排除在外):

<?php query_posts($query_string . '&cat=-3,-8'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

<div class="post">

<!-- Display the Title as a link to the Post's permalink. -->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>

<!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. -->
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>

<div class="entry">
<?php the_content(); ?>
</div>

<p class="postmetadata">Posted in <?php the_category(', '); ?></p>
</div> <!-- closes the first div box -->

<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>