I am working on My WordPress Blog.
the_excerpt(); &
<a href="<?php the_permalink(); ?>">Read more</a>
If I give WordPress standard can add excerpt post like “Read More”.
My code looks like this:
<a href="<?php the_permalink() ?>
"rel="bookmark" title="Read more on
<?php the_title_attribute(); ?>"><?php the_title(); ?></a>
My question is how can I add an icon to Read More? Is there is any plugin for that? Or can we manually add this? Please help me to find a solution for this.
You would add a class to the link like so;
And then you would use CSS to apply your icon to that class like so;
These are examples, you would change the url path to your images folder depending on where it was relative to your stylesheet and you would upload your icon.
Hope this helps.