How can I exclude a tag from WP_Query
-
I want to exclude a certain tag from WP_query
<?php $recent = new WP_Query("tag=north-indian&showposts=1"); while($recent->have_posts()) : $recent->the_post();?>
such that it displays all posts related to the tag “north-indian” and none to the tag “south-indian”
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How can I exclude a tag from WP_Query’ is closed to new replies.