Skip to content

Instantly share code, notes, and snippets.

@wpexplorer
Created January 21, 2014 03:26
Show Gist options
  • Select an option

  • Save wpexplorer/8533997 to your computer and use it in GitHub Desktop.

Select an option

Save wpexplorer/8533997 to your computer and use it in GitHub Desktop.
Archive description
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