Forums Forums Search & Filter Pro Pagination on a Search Page

Tagged: 

Viewing 1 post (of 1 total)
  • Trevor
    #251465

    Try something a lot simpler to start with, like this:

    	<div class="pagination">
    		
    		<div class="nav-previous"><?php next_posts_link( 'Older posts', $query->max_num_pages ); ?></div>
    		<div class="nav-next"><?php previous_posts_link( 'Newer posts' ); ?></div>
    	</div>

    This assumes that your main query results array is called $query

    This code does not run an extra query, as you can see.

Viewing 1 post (of 1 total)