Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created April 7, 2015 18:29
Show Gist options
  • Save thierrypigot/9e44a29cfed577f1cfb8 to your computer and use it in GitHub Desktop.
Save thierrypigot/9e44a29cfed577f1cfb8 to your computer and use it in GitHub Desktop.
WordPress Email Antispam Shortcode
<?php
/**
* Anti Spam Email
* [email][email protected][/email]
**/
function tp_antispam_email_shortcode( $atts , $content = null )
{
if ( ! is_email( $content ) ) {
return;
}
return '<a href="mailto:' . antispambot( $content ) . '">' . antispambot( $content ) . '</a>';
}
add_shortcode( 'email', 'tp_antispam_email_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment