How to Add Email This Option to Your WordPress Posts
Word of Mouth advertising is one of the techniques that provide very good results. We have seen twitter to help brands get more exposure. But one of the ways you can encourage your users to recommend your articles is by adding an Email This option to your WordPress Posts. WordPress has a plugin called WP-Email that gives your user an ability to share the post with their friends via an email.
You must download and activate the plugin. Once the plugin is activated you need to go head to:
WP-Admin > Settings > Permalinks
And hit save changes. You must do that in order to regenerate permalinks. You don’t need to change settings, you can leave your default permalink structure and just save. (Check out an article about SEO Friendly Permalink Structure in WordPress)
Once you have done that you need to go and modify the plugin settings.

Next you will need to edit one of the following files: page.php, single.php, loop.php, post.php
Find the following code:
<?php while (have_posts()) : the_post(); ?>gt
Then in that loop, you must paste the following code:
<?php if(function_exists('wp_email')) { email_link(); } ?>
If you DO NOT want the email link to appear in every post/page, DO NOT use the code above. Just type in [email_link] into the selected post/page content and it will embed the email link into that post/page only.
You can show the email stats such as most emailed posts and total emailed posts using the widgets if your template has those available.
You can also use the Usage page of this plugin to get the codes to display the stats directly.
WP-Email
Comments
No Responses to “How to Add Email This Option to Your WordPress Posts”Share Your Opinions
Tell us what you're thinking...
and if you want a pic to show with your comment, then get gravatar!
Please make sure that you have read our Comment Policy.










What Next?
Digg itSave This Page
Subscribe to WPBeginner
Stumble it
Related Posts