Skip to content

Instantly share code, notes, and snippets.

@crittermike
Created April 11, 2017 17:28
Show Gist options
  • Save crittermike/2e8267327399685dabe18f3c8ff338a3 to your computer and use it in GitHub Desktop.
Save crittermike/2e8267327399685dabe18f3c8ff338a3 to your computer and use it in GitHub Desktop.
Find the parent of a taxonomy term in Drupal 8
<?php
$parents = \Drupal::entityTypeManager()->getStorage('taxonomy_term')->loadParents($term_id);
$parent_term = reset($parents);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment