标签: wordpress
在wordpress循环中,如何阻止我的帖子出现,即排除:
<?php while ( have_posts() ) : the_post(); ?>
有可能吗?
谢谢!
答案 0 :(得分:1)
试试这个:
query_posts(array('post__not_in' => array(1,2))); if ( have_posts() ) : while ( have_posts() ) : the_post();
其中1和2是您要排除的帖子。