Custom Query and Pagination
-
Hi,
I am currently using TheMorningAfter theme by WooThemes, and am trying to add pagination to the featured posts section. I have tried adding it using SEO Pager, and while this added the page numbers at the bottom, they only refresh the page. I have seen people saying that this does not work in WordPress 3.0.
Here is my current query:
<?php $feat_id = get_cat_id($woo_options['woo_featured_category']); $limit = $woo_options['woo_featured_limit']; $the_query = new WP_Query("cat=$feat_id&showposts=$limit"); while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID; ?>
Is there anyway to change this to allow pagination?
Thanks,
crisp82
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Custom Query and Pagination’ is closed to new replies.