Skip to content

Instantly share code, notes, and snippets.

@iledcom
Created August 8, 2015 15:31
Show Gist options
  • Save iledcom/1bd6147c0e16fac4c91d to your computer and use it in GitHub Desktop.
Save iledcom/1bd6147c0e16fac4c91d to your computer and use it in GitHub Desktop.
Drupal7 How to get taxonomy term name from tid?
<?php
$term = taxonomy_term_load($tid);
$tids = array(1, 2, 3);
$terms = taxonomy_term_load_multiple($tids);
foreach ($terms as $term) {
$name = $term->name;
print $name;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment