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