Hello
I'm running WordPress v.2.6 on my website.
I want to customize the posts links so that instead of:
<<Older Entries | Newer Entries>>
we can see
<<Name of the previous post | Name of the following post >>
This is probably a common request but I haven't figured it out.
Here is the existing code:
Quote:
<div class="alignright" id="rightarrow"><?php previous_posts_link('Newer Entries »') ?></div>
<div class="alignleft" id="leftarrow"><?php next_posts_link('« Older Entries') ?></div>
|
If I change ('Newer Entries »') to ('%postname%') it just
shows as a string.
Help please.
|