Skip to content

Instantly share code, notes, and snippets.

@chodorowicz
Last active June 16, 2016 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chodorowicz/685137b973723b93ada2a7d150fc433c to your computer and use it in GitHub Desktop.
Save chodorowicz/685137b973723b93ada2a7d150fc433c to your computer and use it in GitHub Desktop.
get term ultimate parent / WordPress
<?php
function get_term_ultimate_parent($id, $taxonomy) {
$ancestors = get_ancestors($id, $taxonomy);
return get_term(end($ancestors), $taxonomy);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment