Answers for "Drupal 9 Get taxonomy term objects by vocabulary machine name vid"

PHP
0

Drupal 9 Get taxonomy term objects by vocabulary machine name vid

try {
  $terms = Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadByProperties(['vid' => 'my_vocablary_machine_name']);
} catch (Exception $e) {
  throw new HttpException(400,'Error upon selection of terms/session_tracks. ' . $e->getMessage());
}
Posted by: Guest on January-04-2022

Code answers related to "Drupal 9 Get taxonomy term objects by vocabulary machine name vid"

Browse Popular Code Answers by Language