• I am unable to make the previous_post_link & next_post_link work correctly on my custom wordpress site.

    Can anyone help me, please refer to the code and link below.

    https://www.bundles-of-babies.com/wordpress

    [please mark any code using the ‘code’ button; and in future, please use the pastebin for any code longer than 10 lines]

    <?php query_posts('category_name=testimonials&showposts=1'); ?>
    			<?php if (have_posts()) : ?>
    			<?php while (have_posts()) : the_post(); ?>
                	<h2>Staff</h2>
          <a href="wordpress/testimonials"><h1><?php the_title(); ?></h1></a>
                    <img src="/images/top_background.png" width="486" height="16">
                    <div class="entry">
    				<?php the_content(); ?>
                     <img src="/images/testimonials_line.jpg" width="289" height="22" align="left">
    				<?php previous_post_link(); ?>
    				<?php next_post_link(); ?>
    				</div>
               	<?php endwhile; ?>
                <?php endif; ?>
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘previous_post_link & next_post_link not working’ is closed to new replies.