| 5 taxonomy.module | taxonomy_get_parents_all($tid) |
| 6 taxonomy.module | taxonomy_get_parents_all($tid) |
| 7 taxonomy.module | taxonomy_get_parents_all($tid) |
Find all ancestors of a given term ID.
2 calls to taxonomy_get_parents_all()
File
- modules/
taxonomy.module, line 831 - Enables the organization of content into categories.
Code
function taxonomy_get_parents_all($tid) {
$parents = array();
if ($tid) {
$parents[] = taxonomy_get_term($tid);
$n = 0;
while ($parent = taxonomy_get_parents($parents[$n]->tid)) {
$parents = array_merge($parents, $parent);
$n++;
}
}
return $parents;
}
Login or register to post comments