How can I exclude a category from this code…
-
Hey Guys,
I am trying to exclude some categories from a post query on my home page, the usual (‘exclude’ => ‘-6,-12,-15’) isn’t working… but Im not very good at coding.
Here is my query code:
<?php $my_query = new WP_Query( array( 'post_type' => 'portfolio', 'showposts' => '3' ) ); while ($my_query->have_posts()) : $my_query->the_post(); $custom = get_post_custom($post->ID); ?>
I have been trying different variations of the following exclude code, but it’s not working. Please help???
‘ ‘exclude’ => ‘-6,-12,-15’ ‘
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How can I exclude a category from this code…’ is closed to new replies.