View Single Post
Old 09-02-2013, 11:14 AM  
Tittytweaker
Confirmed User
 
Tittytweaker's Avatar
 
Industry Role:
Join Date: Dec 2012
Posts: 184
Styling Taxonomy Results?

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?
__________________
www.tittytweaker.com
Tittytweaker is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook