Published
- 1 min read
drupal 8 get taxonomy terms by vocabulary name
The solution for this is noted below
drupal 8 get taxonomy terms by vocabulary name
Solution
$terms = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadByProperties([
'vid' => 'vocabulary__machine_name'
]);
Try other methods by searching on the site. That is if this doesn’t work