Answers for "how to get terms in drupal 8"

PHP
1

drupal 8 get taxonomy terms by vocabulary name

$terms = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadByProperties([
  'vid' => 'vocabulary__machine_name'
]);
Posted by: Guest on September-22-2020

Code answers related to "how to get terms in drupal 8"

Browse Popular Code Answers by Language