query_posts to sort works but pagination not working
-
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=10&showposts=3&paged=$paged"); ?> <?php query_posts('orderby=date&order=ASC'); ?> <?php global $more; $more = 0; ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?>
sorting posts works but my pagination not working. Can help me plz?
I’m using Wp-Pagnavi for the pagination.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘query_posts to sort works but pagination not working’ is closed to new replies.