Hi there.
Is it possible to add "Previous Entries" and "Next Entries" links to the bottom of my blog? If so, how?
Thanks!
Hilary
Hi there.
Is it possible to add "Previous Entries" and "Next Entries" links to the bottom of my blog? If so, how?
Thanks!
Hilary
Hello
The file you add it to depends on where you want them appear for example, the front page would be index.php and you would add (from the default theme):
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
Hope it helps. :)
Hello
The file you add it to depends on where you want them appear for example, the front page would be index.php and you would add (from the default theme):
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
Hope it helps. :)
Great, thanks!
Now how do I make it so that Previous Entries is flush left and Next Entries is flush right? Like here: http://noshwithme.com/page/2/
Thanks for your help!
Hilary
This topic has been closed to new replies.