There still isn’t a function for this, and the conditions in taxonomy_term_load_multiple have been deprecated, so an EntityFieldQuery is the only (and recommended) way to do this: $query = new EntityFieldQuery(); $result = $query ->entityCondition(‘entity_type’, ‘taxonomy_term’) ->propertyCondition(‘vid’, 2, ‘=’) // for vocabulary id 2 ->execute(); Not too bad, I guess, but it just feels like… Continue reading Drupal 7: Load all terms in a Taxonomy vocabulary