pagination problem
-
Hi, my index-loop.php:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> <?php query_posts('cat=-8&paged=$paged'); ?> <?php if ( $wp_query->max_num_pages > 1 ) : ?> <?php wp_pagenavi(); ?> <?php endif; ?> <?php wp_reset_query(); ?>
I have installed wp_pagenavi() plugin and he is display correctly.
But
https://www.domain.com/page/2,
https://www.domain.com/page/3
is allways have this same effect, page with first 5 posts.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘pagination problem’ is closed to new replies.