Skip to content

Instantly share code, notes, and snippets.

@Yorlinq
Last active July 23, 2022 09:13
Show Gist options
  • Save Yorlinq/74286fedeefd28ef3b110ace48f38768 to your computer and use it in GitHub Desktop.
Save Yorlinq/74286fedeefd28ef3b110ace48f38768 to your computer and use it in GitHub Desktop.
Shortcode for 'Blog name' - WordPress
// Shortcode for 'Blog name': [yl_blog_name]
function yl_blog_name_shortcode() {
return get_bloginfo('name');
}
add_shortcode('yl_blog_name','yl_blog_name_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment