WordPress get_root_category
public php v1 · immutable// Returns the root ancestor of a given category.// Accepts either category ID number or category object.function get_root_category( $cat ) { $category = get_category( $cat ); while ( $category->parent ) $category = get_category( $category->parent ); return $category;}