Created
December 14, 2018 22:36
-
-
Save nicoboni/72d402e60f05ad236dc46849ea99a681 to your computer and use it in GitHub Desktop.
Wordpress shortcode displaying the active tag description
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*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