drupal-taxonomy
Installation
SKILL.md
Drupal Taxonomy
Loading Terms
// Load term by ID
$term = $this->entityTypeManager->getStorage('taxonomy_term')->load($tid);
// Load multiple terms
$terms = $this->entityTypeManager->getStorage('taxonomy_term')->loadMultiple($tids);
// Load terms by vocabulary
$terms = $this->entityTypeManager->getStorage('taxonomy_term')->loadByProperties([
'vid' => 'tags',
'status' => 1,
]);