List posts with TWO categories
-
Hi, i am trying to list all posts that have two specific categories, namely posts that are in the News and and the featured Category.
I have the following WP_Query object code in my sidebar.php file, it is listing pages for the archive list of posts for which i want to highlight specific featured posts at the top of the sidebar:
<ul> <?php $myPosts = new WP_Query(); $myPosts->query( array('category__and' => array(get_cat_ID( 'featured' ), get_cat_ID(single_cat_title('')) ), showposts => '5' ) ); while ($myPosts->have_posts()) : $myPosts->the_post(); ?> <li><?php $myPosts->the_title(); ?></li> <?php endwhile; ?> </ul>Sorry i am new to wp so i am not sure what i am doing wrong, many thanks in advance.
Regards,
Chris
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘List posts with TWO categories’ is closed to new replies.