• I want some very simple “Previous Page/Next Page”-style navigation to appear at the bottom of my entries, but I can’t seem to find a viable solution. I’ve tried installing and activating Eric Meyer’s Previous/Next Page Plugin, but nothing appears on my pages.
    Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Here’s what I have for page navigation between single entries:
    previous_post () ;
    next_post () ;
    ———————–
    <?php if ($single) { ?>
    <div class="feedback">
    <?php previous_post('% |','','yes'); ?> home <?php next_post('| %','','yes'); ?>

    </div><?php } ?>
    ———————–
    It must be In-The-Loop
    See it in the WIKI here:
    http://wiki.wordpress.org/?pagename=next_post
    and you can find the previous_post page linked there too.
    See it on My Site Here
    Notice that with this easy method when you are viewing the most recent post, then the “next post” coding shows nothing at all.
    It’s something I don’t mind, as I have it coded to show titles, and that works right for that methodology, IMO.
    I hardcode my home site url on purpose, you can do it via other php_methodology too, or just leave that part out. Of course, do with it what you want to …! 🙂
    ———
    Hope that helps you some!
    Sue

    Thread Starter feaverish

    (@feaverish)

    Thanks for the help. I’ll try it out.

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

The topic ‘Previous/Next Navigation’ is closed to new replies.