• madsciencelab

    (@madsciencelab)


    Can anyone help me find out why i dont have next and previous posts links showing up?

    <?php get_header(); ?>
    
    	        <div id="content">
         <?php if (have_posts()) : ?>
                   <?php while (have_posts()) : the_post(); ?>
                   <!-- do stuff ... -->
                   <?php endwhile; ?>
    <p><?php posts_nav_link(); ?></p>
    
    <?php endif; ?>
    
        </div>
        <br class="clearfloat" />
      </div>
    
    <?php get_footer(); ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • robsonfgjunior

    (@robsonfgjunior)

    try to put it inside the loop

    Thread Starter madsciencelab

    (@madsciencelab)

    I just moved it in there and its still not showing up.

    <?php get_header(); ?>
    
    	        <div id="content">
         <?php if (have_posts()) : ?>
                   <?php while (have_posts()) : the_post(); ?>
                   <!-- do stuff ... -->
    
    <p><?php posts_nav_link(); ?></p>
    
                   <?php endwhile; ?>
    
    <?php endif; ?>
    
        </div>
        <br class="clearfloat" />
      </div>
    
    <?php get_footer(); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Navigation links’ is closed to new replies.