Created
August 11, 2018 01:43
-
-
Save iWebbers/b71637f35fff5d51d11288d9e5ecfa9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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