Pagination not working with custom category template
As this is your main loop of your template, you should not be making a new loop, but modify the existing loop with pre_get_posts. This way you can be sure that all extra query parameters will be taken into account. An example of how you would do this: add_action( ‘pre_get_posts’, ‘wpse5477_pre_get_posts’ ); function wpse5477_pre_get_posts( $query … Read more