add class to term_description

this does the trick

<?php function add_class_to_term_description($term_description) {
  echo '<div class="cell">' . $term_description. '</div>';
}
add_filter( 'term_description', 'add_class_to_term_description' ); ?>

Leave a Comment