Pagination not working for Custom search form & custom result template

i’ve seen this: next_posts_link

You must use wp_reset_postdata when use new WP_QUERY(), and this

<div class="pagination" id="blog-pagination">
  <span class="previous" ><?php previous_posts_link( '&larr;Newer', $loop->max_num_pages  ); ?></span>
  <span class="next"><?php next_posts_link( 'Older &rarr;', $loop->max_num_pages  ); ?></span>
</div>

go into if($loop->have_posts()):?> condition

Leave a Comment