Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 3, 2012 04:40
Show Gist options
  • Save snowman-repos/3825033 to your computer and use it in GitHub Desktop.
Save snowman-repos/3825033 to your computer and use it in GitHub Desktop.
Wordpress: Bloginfo Shortcode
function digwp_bloginfo_shortcode( $atts ) {
extract(shortcode_atts(array(
'key' => '',
), $atts));
return get_bloginfo($key);
}
add_shortcode('bloginfo', 'digwp_bloginfo_shortcode');
[bloginfo key='name']
<img src="[bloginfo key='template_url']/images/logo.jpg" alt="[bloginfo key='name'] logo">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment