Get All Nodes from one taxonomy

Want to get all nodes classified under specific taxonomy?

Here we go:

<?php

 $result = taxonomy_select_nodes(array($node->taxonomy[1]->tid));

 while ($row = db_fetch_object($result)) {

 print $row->nid."<br />";

 }
 
?>

Leave a Reply