Power Rangers Dino Thunder

<?php if ($terms): ?>
<?php
$vocabularies = taxonomy_get_vocabularies();
foreach($vocabularies as $vocabulary) {
if ($vocabularies) {
$terms = taxonomy_node_get_terms_by_vocabulary($node->nid, $vocabulary->vid, 9);
if ($terms) {
print '

' . $vocabulary->name . ':

';
foreach ($terms as $term) {
print l($term->name, 'taxonomy/term/'.$term->tid) . ' ';
}
print '

';
}
}
}
?>
<?php endif; ?>

Syndicate content