Skip to content

Instantly share code, notes, and snippets.

@flashvnn
Last active December 17, 2015 02:48
Show Gist options
  • Save flashvnn/5538183 to your computer and use it in GitHub Desktop.
Save flashvnn/5538183 to your computer and use it in GitHub Desktop.
Drupal get taxonomy by name
public static function GetTermNameByTid($tid) {
$parents = taxonomy_get_parents($tid);
$output = '';
if ($parents) {
$term = taxonomy_term_load($tid);
$output = $term->name;
return $output;
} else {
return FALSE;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment