Listing Posts from Two Categories
-
I am attempting to list posts that belong to two specific categories. I have attempted to create the code myself, but I’m not very experienced with PHP
<?php //The Query query_posts(array('category__and' => array(8,387))); //The Loop if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> </li> <?php endwhile; else: ?> <?php endif; ?>
This is the code I am using, but it comes up with only a blank page. I would appreciate any help, even if it’s suggesting a plugin.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Listing Posts from Two Categories’ is closed to new replies.