taxonomy_term_load

taxonomy_term_load($tid)

Return the taxonomy term entity matching a term ID.

Parameters

$tid: A term's ID

Return value

\Drupal\taxonomy\Entity\Term|null A taxonomy term entity, or NULL if the term was not found. Results are statically cached.

Deprecated

in Drupal 8.x, will be removed before Drupal 9.0. Use \Drupal\taxonomy\Entity\Term::load().

File

core/modules/taxonomy/taxonomy.module, line 426
Enables the organization of content into categories.

Code

1
2
3
4
5
6
function taxonomy_term_load($tid) {
  if (!is_numeric($tid)) {
    return NULL;
  }
  return Term::load($tid);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.