Created
January 21, 2014 03:26
-
-
Save wpexplorer/8533997 to your computer and use it in GitHub Desktop.
Archive 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
| if ( is_tax() ) { | |
| $obj = get_queried_object(); | |
| $taxonomy = $obj->taxonomy; | |
| $term_id = $obj->term_id; | |
| $description = term_description($term_id,$taxonomy); | |
| if ( ! empty( $description ) ){ | |
| $output .= '<div class="clr page-subheading term-description">'; | |
| $output .= $description; | |
| $output .= '</div>'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment