Skip to content

Instantly share code, notes, and snippets.

@Yorlinq
Created July 23, 2022 09:16
Show Gist options
  • Save Yorlinq/9f949b8b8c84c86ddd33fc9b69a1bf31 to your computer and use it in GitHub Desktop.
Save Yorlinq/9f949b8b8c84c86ddd33fc9b69a1bf31 to your computer and use it in GitHub Desktop.
Shortcode for 'Blog email' - WordPress
// Shortcode for 'Blog email': [yl_blog_email]
function yl_blog_email_shortcode() {
return get_bloginfo('admin_email');
}
add_shortcode('yl_blog_email','yl_blog_email_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment