Title: Prev &amp; Next
Last modified: August 19, 2016

---

# Prev & Next

 *  [euphoriaweb](https://wordpress.org/support/users/euphoriaweb/)
 * (@euphoriaweb)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/prev-amp-next/)
 * Hey all,
 * Fairly new to wp a week or so, anyway i have an individual template page setup
   where is displays testimonials which are individual posts and im un sure how 
   to show the prev and next buttons.
 * Below is the code so far (if its right)
 * <div id=”left”>
    <div class=”content”>
 * <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
 * <?php the_content(); ?>
 * <?php endwhile; ?>
 * <?php else : ?>
    <?php endif; ?>
 * <?php
    $args = array( ‘numberposts’ => 3, ‘cat’ => 3 ); $posts=get_posts($args);
   if ($posts) { foreach($posts as $post) { setup_postdata($post); ?> <h3><?php 
   the_title(); ?></h3> <div class=”author”>Client: **<?php echo get_post_meta($
   post->ID, ‘Client’, true); ?>**</div> <div id=”box”><?php the_content(); ?> <
   div id=”comments”> <div class=”comread”>ID, ‘Website’, true); ?>” target=”_blank”
   >View Website</div> </div> </div>
 * <?php }
    } ?>
 * </div>
    </div>
 * Thanks for your help in advance.
 * Euphoria 🙂

Viewing 1 replies (of 1 total)

 *  [henkholland](https://wordpress.org/support/users/henkholland/)
 * (@henkholland)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/prev-amp-next/#post-1311029)
 * I am not a coder so I cannot check your code but place this between the if statement
   and the endwhile statement:
 *     ```
       <div class="navigation">
       			<div class="alignleft"><?php previous_post_link('&laquo; %link') ?></div>
       			<div class="alignright"><?php next_post_link('%link &raquo;') ?></div>
       		</div>
       ```
   
 * More here: [http://codex.wordpress.org/Next_and_Previous_Links](http://codex.wordpress.org/Next_and_Previous_Links)

Viewing 1 replies (of 1 total)

The topic ‘Prev & Next’ is closed to new replies.

 * 1 reply
 * 2 participants
 * Last reply from: [henkholland](https://wordpress.org/support/users/henkholland/)
 * Last activity: [16 years, 4 months ago](https://wordpress.org/support/topic/prev-amp-next/#post-1311029)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
