Yo utilizo esta función, con ella obtienes la categoría mas alta en la jerarquía:
Código PHP:
Ver originalfunction get_top_category($catid){
while ($catid) {
$cat = get_category($catid);
$catid = $cat->category_parent;
$cat_parent = $cat;
}
return $cat_parent;
}
//CALL
$parent = get_top_category( $catid );