2013-06-26 57 views
1

在WordPress循環某些職位,我怎麼能阻止我的帖子出現的2,即排除:我怎樣才能排除從WordPress循環

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

這可能嗎?

謝謝!

+1

使用繼續嗎? – Achrome

+0

是的,這是可能的。你想在哪裏應用這個? –

+0

一個簡單的方法是製作一個垃圾類別,並將其排除在外。 http://wordpress.org/support/topic/exclude-posts-from-wp_query –

回答

1

試試這個:

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

其中1和2是要排除的職位。