Skip to content

Instantly share code, notes, and snippets.

@addisonhall
Last active November 10, 2020 14:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save addisonhall/89ad3aa42622d5f3e8317e32c18d4952 to your computer and use it in GitHub Desktop.
Save addisonhall/89ad3aa42622d5f3e8317e32c18d4952 to your computer and use it in GitHub Desktop.
Shortcode to output site tagline
/**
* Output site tagline.
* [gp_site_tagline]
*/
function gp_output_site_tagline_func() {
return get_bloginfo( 'description' );
}
add_shortcode( 'gp_site_tagline', 'gp_output_site_tagline_func' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment