Hello
I want to remove anchor(a href) from previous_post_link() AND previous_post_link() functions.
I called them in index.php
to show next & previous pages [where, Number of posts per page = 5]
my code
<div id="morePrev">
<?php next_posts_link(); ?>
<?php previous_posts_link(); ?>
</div>
Problem is <?php next_posts_link(); ?> AND <?php previous_posts_link(); ?> both are comes in link mode(a href).
I know those functions beside from link-template.php
But I want to get only text of url,ie
http://myblog.com/?paged=1
So I can wrap them in a href with a Javascript onlick Function.
Please help me
Thank you
- Soumya