Taxonomy terms in contemplate template.

Category
drupal, taxonomy, themes
Date Created
8th Jan 2010
Last Updated
9th Jul 2010

Taxonomy terms in contemplate template.

Question

How to print taxonomy terms within a contemplate template.

Answer

Enter the following within your customised template.


<?
$taxonomy_terms = $node->taxonomy;
  foreach ($taxonomy_terms as $term) {
    $faq_tags .= ", $term->name";
  }
$faq_tags = substr($faq_tags,1);
?>

The variable $faq_tags is now available listing the terms separated by commas.

Related terms