Skip to content

Instantly share code, notes, and snippets.

@nicoboni
Created December 14, 2018 22:36
Show Gist options
  • Select an option

  • Save nicoboni/72d402e60f05ad236dc46849ea99a681 to your computer and use it in GitHub Desktop.

Select an option

Save nicoboni/72d402e60f05ad236dc46849ea99a681 to your computer and use it in GitHub Desktop.
Wordpress shortcode displaying the active tag description
/*Active tag description shortcode*/
add_shortcode('tag_desc', 'tag_desc_shortcode');
function tag_desc_shortcode( $atts, $content = null ) {
$output .= '<span class="tag_description">'.$description = tag_description().'</span>';
return $output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment