wordpress tutorial, how to make an email address linkable in wordpress. Here we given very simple and short code which you can add in theme.
When ever we insert the URL , email in post we need to put the link manually. WordPress provided the way to automatically make the URL and Email clickable in wordpress post.
how to make an email address clickable in wordpress
You just need to add following code in your wordpress theme’s functions.php file.
add_filter('the_content', 'make_clickable');
For more help you can check following URL:
http://codex.wordpress.org/Function_Reference/make_clickable