Pagination not working
-
On this site the index.php of the theme is set to only show posts from a category.
There are only 2 posts in that category and the code I used to query the db is:
$the_query = new WP_Query( 'category_name=somecategory' );
What am I missing? I also placed a
wp_reset_postdata();
at the end of the loop.EDIT: I found a workaround.
wp_pagenavi( array( 'query' => $the_query ) );
- The topic ‘Pagination not working’ is closed to new replies.