1

在 wordpress 循环中,如何防止我的 2 个帖子出现,即排除:

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

可能吗?

谢谢!

4

1 回答 1

1

尝试这个:

query_posts(array('post__not_in' => array(1,2)));
    if ( have_posts() ) : while ( have_posts() ) : the_post();

其中 1 和 2 是您要排除的帖子。

于 2013-06-26T19:55:04.737 回答