Kuhan Doss
Kuhan Doss

Reputation: 21

How to include title attribute in this PHP Code

<div class="alignleft">
<?php previous_post('&laquo; &laquo; %', 'Previous Post ', 'no'); ?>
</div>
<div class="alignright">
<?php next_post('% &raquo; &raquo; ', '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

Answers (1)

powtac
powtac

Reputation: 41050

Check this and this answer.

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

Related Questions