When I use next / previous (blog post titles) at bottom of each post, the system autogenerates 2 small arrows. how can i get rid of these?
thanks!
When I use next / previous (blog post titles) at bottom of each post, the system autogenerates 2 small arrows. how can i get rid of these?
thanks!
In the index.php of your theme you'll want to get rid of the «s and »s. Just look for "previous" with control+F and you'll find them quick enough.
hmm. these are already taken out. here is my code below
<div id="postNav">
<table>
<tr valign="top"><td align="right">Next:</td><td><?php next_post_link(); ?></td></tr>
<tr valign="top"><td align="right">Prior:</td><td><?php previous_post_link(); ?></td></tr>
</table>
</div>
in the php td's, the arrows are being automatically generated on the server side?
In your other related thread I gave you the link to the Codex page where the template tag is described. Why don't you read it? I mean the whole page, including parameters etc.
This topic has been closed to new replies.