Prev & 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 🙂
The topic ‘Prev & Next’ is closed to new replies.