Unrendered taxonomy links no longer available as a separate variable in node.tpl.php files

Last updated on
10 September 2016

Drupal 7 will no longer be supported after January 5, 2025. Learn more and find resources for Drupal 7 sites

This documentation is deprecated.

In Drupal 6, node.tpl.php files could use the $taxonomy variable if they needed access to an array of unrendered taxonomy links associated with the current node.

In Drupal 7, this is no longer the case. Instead, all links have been moved into the $node object. The array of unrendered taxonomy links can now be found in $node->content['links']['terms']['#value'] instead. (Note that this array should be used with caution, since the text contained within it has not been escaped to prevent XSS attacks.)

Rendered taxonomy links are not affected; node.tpl.php files can continue to access these via the $terms variable, as before. In many cases, the $terms variable is what you want to use in your theme anyway, and you might be able to replace references to $taxonomy with it, as in the following example:

Drupal 6.x

<?php if ($taxonomy): ?>
  <div class="terms"><?php print $terms ?></div>
<?php endif;?>

Drupal 7.x

<?php if ($terms): ?>
  <div class="terms"><?php print $terms ?></div>
<?php endif;?>

Help improve this page

Page status: Deprecated

You can: