Problem creating Next/Previous pagination with my theme
-
Ok, I’ve done quite a bit of research and this is what I’ve found
Talks about an issue with query_posts removing pagination capabilities
Which is furthered by this thread
Here is my loop from the template
<?php $the_query = new WP_Query('cat=-'. $GLOBALS[ex_feat] . ',-' . $GLOBALS[ex_vid] . '&showposts=' . get_option('woo_other_entries') . '&orderby=post_date&order=desc'); $counter = 0; while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID; ?> <?php $counter++; ?>
Where do I go from here?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Problem creating Next/Previous pagination with my theme’ is closed to new replies.