Title: next/previous
Last modified: August 20, 2016

---

# next/previous

 *  Resolved [miowebdesigns](https://wordpress.org/support/users/miowebdesigns/)
 * (@miowebdesigns)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/nextprevious-1/)
 * Maybe a simple question but here goes: this is code I am using to display posts
   on a page. I need to navigate to more posts, forward and back. I want navigation
   above and below the posts (top and bottom of page. I there are lots of possibilities,
   I think but which will work for my case? Anyone?
 *     ```
       <table>
         <tr>
           <td>
   
       <?php $myquery = new WP_Query(); $myquery->query('posts_per_page=6&cat=6,4'); ?>
       <?php while ($myquery->have_posts()) : $myquery->the_post(); ?>
           <div id="news">
           <div class="single" id="post-<?php the_ID(); ?>">
             <a href="<?php the_permalink(); ?>">
             <?php if(has_post_thumbnail()) {  ?>
             <?php the_post_thumbnail('large');?>
             <?php } else { ?>
             <img src="<?php bloginfo('template_url'); ?>/images/no_image.png" alt="no image available"/>
             <?php } ?></a>
             <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
             </div><!--single-->
             </div><!--news-->
           <?php endwhile; ?>
           </td>
         </tr>
       </table>
       ```
   

Viewing 1 replies (of 1 total)

 *  [vtxyzzy](https://wordpress.org/support/users/vtxyzzy/)
 * (@vtxyzzy)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/nextprevious-1/#post-2266938)
 * The article below might help:
 * [http://wordpress.mcdspot.com/2010/11/25/pagination-using-paginate_links/](http://wordpress.mcdspot.com/2010/11/25/pagination-using-paginate_links/)

Viewing 1 replies (of 1 total)

The topic ‘next/previous’ is closed to new replies.

## Tags

 * [next](https://wordpress.org/support/topic-tag/next/)
 * [previous](https://wordpress.org/support/topic-tag/previous/)
 * [the-loop](https://wordpress.org/support/topic-tag/the-loop/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 1 reply
 * 2 participants
 * Last reply from: [vtxyzzy](https://wordpress.org/support/users/vtxyzzy/)
 * Last activity: [14 years, 9 months ago](https://wordpress.org/support/topic/nextprevious-1/#post-2266938)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
