Skip to content

Instantly share code, notes, and snippets.

View joffreypersia's full-sized avatar
🏠
Working from home

Joffrey Persia joffreypersia

🏠
Working from home
View GitHub Profile

The WordPress Codex offers an interesting snippet for a shortcode. First copy the following code into the functions.php of the theme or use WP Code Box:

function wpcodex_hide_email_shortcode( $atts , $content = null ) {
	if ( ! is_email( $content ) ) {
		return;
	}

	return '<a href="mailto:' . antispambot( $content ) . '">' . antispambot( $content ) . '</a>';
}