Skip to content

Instantly share code, notes, and snippets.

@sanjaybhowmick
Created September 9, 2015 16:43
Show Gist options
  • Save sanjaybhowmick/ca4d5f3500267934459e to your computer and use it in GitHub Desktop.
Save sanjaybhowmick/ca4d5f3500267934459e to your computer and use it in GitHub Desktop.
WordPress - show custom taxonomy term description
<?php
$taxonomy_term_description = term_description( '', get_query_var( 'taxonomy' ) );
if($taxonomy_term_description != '') : ?>
<div class="tag-desc"><?php echo $taxonomy_term_description; ?></div>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment