pagination isshu with showing posts from custom post types category
-
I want to have a page that shows post from 3 different post types categories which I am able to do but the pagination is not working . I probably missed something in my code could someone please help me out.
Thank you<?php $myquery['tax_query'] = array( 'relation' => 'OR', array( 'taxonomy' => 'category', 'terms' => array('gear-reviews'), 'field' => 'slug', ), array( 'taxonomy' => 'outtake_category', 'terms' => array('gear-reviews'), 'field' => 'slug', ), array( 'taxonomy' => 'story_category', 'terms' => array('gear-reviews'), 'field' => 'slug', ), ); query_posts($myquery); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <div class="metadate"><?php the_time('l, F j, Y') ?></div> <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <div id="featuredimage"> <?php if ( has_post_thumbnail()) { echo '<a href="' . get_permalink($post->ID) . '" >'; the_post_thumbnail(); echo '</a>'; } ?><!-- end featured image --></div> <div class="entry"> <?php the_excerpt(); ?> </div> <br class="clearfloat" /> </div> <?php endwhile; ?> <?php wp_pagenavi(); ?> <?php else : ?> <h2>Not Found</h2> <?php endif; ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘pagination isshu with showing posts from custom post types category’ is closed to new replies.