Reputation: 21
<div class="alignleft">
<?php previous_post('« « %', 'Previous Post ', 'no'); ?>
</div>
<div class="alignright">
<?php next_post('% » » ', 'Next Post ', 'no'); ?>
</div>
Hi I have pasted the wordpress Older and Newer Post code, I want to show the post title, when user hover on those link. How to include...
Upvotes: 0
Views: 137
Reputation: 41050
Both times they use Wordpress functions to receive the title and build the link manually.
And according to this question and answer there is a function called get_previous_posts_page_link()
.
Upvotes: 1