Removing Previous/Next text?
-
I’m new to WP and not very good at PHP so this may be a simple fix…
I created graphical buttons for my previous/next page navigation. The buttons show up and work fine, but I cannot seem to get rid of the HTML previous/next text. It sits over my buttons and leaves them unreadable. How can I remove this text so that the links are purely graphical?
Here’s a link. The buttons are at the top of the post:
https://chronictriathlete.com/wordpress/m%D0%BE%D0%BB%D0%BE%D0%B4%D0%B5%D1%86-menchovThe template code is:
<div class=”page-navigation”>
<div class=”alignleft”>
<?php previous_post(‘%’,’Previous article’, ‘no’); ?>
</div>
<div class=”alignright”>
<?php next_post(‘%’,’Next article’, ‘no’); ?>
</div>
</div>Thanks!
- The topic ‘Removing Previous/Next text?’ is closed to new replies.