Skip to content

Instantly share code, notes, and snippets.

@Robbertdk
Last active August 29, 2015 14:03
Show Gist options
  • Save Robbertdk/98ff828297fac19a3f2d to your computer and use it in GitHub Desktop.
Save Robbertdk/98ff828297fac19a3f2d to your computer and use it in GitHub Desktop.
Anti spam e-mail in Wordpress
<?php
function antispambot_sc( $atts ) {
extract( shortcode_atts( array(
'email' => ''
), $atts ) );
return antispambot( $email );
}
add_shortcode( 'antispambot', 'antispambot_sc' );
// Usage: [antispambot email="my.cloaked.email.address@gmail.com"]
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment