Skip to content

Instantly share code, notes, and snippets.

@nathaningram
Created December 28, 2015 02:16
Show Gist options
  • Select an option

  • Save nathaningram/255602742615b34133d2 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/255602742615b34133d2 to your computer and use it in GitHub Desktop.
//Anti-Spam Email Shortcode
//Use this shortcode [email]info@google.com[/email]
function protect_email_address( $atts , $content=null ) {
for ($i = 0; $i < strlen($content); $i++) $encodedmail .= "&#" . ord($content[$i]) . ';';
return '<a href="mailto:'.$encodedmail.'">'.$encodedmail.'</a>';
}
add_shortcode('email', 'protect_email_address');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment