Show Multable Custom Posts Types within a category
-
I am trying to show posts from posts within one category as well as several other post types from withing one category all on one page. I have the below code and it works but pagination does not work any help would be appreciated.
<?php $myquery['tax_query'] = array( 'relation' => 'OR', array( 'taxonomy' => 'category', 'terms' => array('outdoor-recreation'), 'field' => 'slug', ), array( 'taxonomy' => 'outtake_category', 'terms' => array('outdoor-recreation'), 'field' => 'slug', ), array( 'taxonomy' => 'story_category', 'terms' => array('outdoor-recreation'), 'field' => 'slug', ), ); query_posts($myquery); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
The topic ‘Show Multable Custom Posts Types within a category’ is closed to new replies.