Answers for "taxonomy_term storage 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

Browse Popular Code Answers by Language