Exclude Specific Post from While loop
-
I am trying to exclude a specific post (333) from a while loop. So far I have tried a few things to no avail. Could any of you smart people help me out?
This is what I’m dealing with:
$thumbs = new WP_Query();
$thumbs->query(‘category_name=event’);
// The Loop
while( $thumbs->have_posts() ) : $thumbs->the_post();?>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Exclude Specific Post from While loop’ is closed to new replies.