ayyaiyai
Member
Posted 2 years ago #
Hi,
I have the 'older' and 'newer' entries links working on my main page but on single post pages it just has the text but its not hyperlinking. The code looks the same to me from index.php and single.php
<ul>
<li><?php next_post_link('« Older Entries') ?></li>
<li><?php previous_post_link('Newer Entries »') ?></li>
</ul>
Suggestions?
Also, I have a css rule for no style on the unordered list tage
ayyaiyai
Member
Posted 2 years ago #
Easiest bit first...
but I'm still getting bullets?
Try using:
#box ul li {list-style:none;}
With regard to the Next & Previous links, are you getting next_post_link mixed up with next_posts_link? And similarly for previous posts?
http://codex.wordpress.org/Template_Tags/next_post_link
http://codex.wordpress.org/Template_Tags/next_posts_link
http://codex.wordpress.org/Template_Tags/previous_post_link
http://codex.wordpress.org/Template_Tags/previous_posts_link
ayyaiyai
Member
Posted 2 years ago #
Yes! Thanks for both solutions :)