You put what was posted above into php tags and then change your term name and it should work. (I think )
Quote:
<?php
$terms = get_terms("model");
$count = count($terms);
if ( $count > 0 ){
echo "<ul>";
foreach ( $terms as $term ) {
echo "<li>" . $term->name . "</li>";
}
echo "</ul>";
}
?>
|