• I’m using the following code,

    <?php $posts = query_posts($query_string); if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    	<?php previous_post_link(); ?> | <?php next_post_link(); ?>
    
    <?php endwhile; endif; ?>

    And although the links come up, the “<<” and “>>” next to the links are linked up. How do I make them links as well?

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • I think this is what you want:

    <?php previous_post_link('%link','&laquo; %title'); ?> | <?php next_post_link('%link','%title &raquo;'); ?>
    Thread Starter barkins

    (@barkins)

    Thanks vtxyzzy, that worked perfect!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Outside of Loop Navigation Questions’ is closed to new replies.