Blog Posts by Category

Categories:

<?php
$vid = 4; /* <---- put correct vocabulary ID here */
$terms = taxonomy_get_tree($vid);
 
print "<ul>";
foreach ( $terms as $term ) {
//echo '<pre>'; print_r($term); echo '</pre>';
if(taxonomy_term_count_nodes($term->tid)) {
print "<li>".
l($term->name,'taxonomy/term/'.$term->tid, array('title' => $term->name)).
"</li>";
} /* end foreach */
}
print "</ul>";
?>