Skip to content

Instantly share code, notes, and snippets.

@iWebbers
Created August 11, 2018 01:43
Show Gist options
  • Save iWebbers/b71637f35fff5d51d11288d9e5ecfa9b to your computer and use it in GitHub Desktop.
Save iWebbers/b71637f35fff5d51d11288d9e5ecfa9b to your computer and use it in GitHub Desktop.
// Get WordPress site email via shortcode: [iw_site_email]
function iw_site_email_shortcode() {
return get_bloginfo('admin_email');
}
add_shortcode('iw_site_email','iw_site_email_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment