Last week I wrote a post about how to insert an e-mail post link into your Wordpress weblog posts, using FeedBurner’s FeedFlare service. The link that is inserted can be formatted, and FeedBurner helpfully gives you the tags so that you can format the link with CSS. However, FeedBurner only explains how to change the formatting, not the actual text. The text reads “Email this”. To fully customize the link, instead of using the code supplied by FeedBurner, insert the following where you want the link to appear:
<a href="http://www.feedburner.com/fb/a/emailFlare?itemTitle=%3C?php%20
the_title%28%29;%20?%3E&uri=%3C?php%20the_permalink%28%29;%20?%3E">
Email post
</a>
This code will place an unformatted link into your code which says “Email post”. To change the link text, change the “Email post” in the code to whatever you want. Now to format the link, you can do so using whatever CSS formatting you want.