• I am displaying 5 posts at a time on a page like so

    $the_query = new WP_Query( array('post_type'=>'post', 'post_status'=>'publish', 'posts_per_page'=>5) ); ?>
     <?php if ( $the_query->have_posts() ) : ?>
      <!-- the loop -->
      <?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>

    How can I create a link for the next 5 posts? Or previous 5 posts?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Links for Next/Previous 5 posts’ is closed to new replies.