I'm trying to figure out how to style my taxonomy results.
I'm using:
Code:
<?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>";
}
?>
To get the list of terms. I'd like to be able to style the results the same way I have them on the home page, only with the models name underneath the photo and nothing else, along with creating new pages after a certain number of results. Any ideas?