Theme: TwentyTen
Page: single.php
I would like to change the next post and previous post arrows to little icons.
This is the current code
<div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
<div class="nav-next"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'twentyten' ) . '</span>' ); ?></div>
I would like to take out ← and replace it with a path to an image but I don't know how to format it or get it to work. I put the image link in between the brackets but that did not work for me.
How do I change the code to get this to work.