I think you do this, not sure if there is a better way.
Quote:
<?php
$terms = get_terms("model");
$count = count($terms);
if ( $count > 0 ){
echo "<ul>";
foreach ( $terms as $term ) {
echo '<li><a href="' . get_term_link($term) . '">'. $term->name . '</a></li>';
}
echo "</ul>";
}
?>
|