Skip to content

Instantly share code, notes, and snippets.

@doitlikejustin
Created August 4, 2013 20:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doitlikejustin/6151920 to your computer and use it in GitHub Desktop.
Save doitlikejustin/6151920 to your computer and use it in GitHub Desktop.
WordPress email shortcode with encoding
// add in functions.php
// [email]
function sc_email($atts) {
$email = 'ENCODED_EMAIL_ADDRESS';
return "<a href='mailto:$email'>$email</a>";
}
add_shortcode('email', 'sc_email');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment