All pastes #690599 Raw Edit

WordPress get_root_category

public php v1 · immutable
#690599 ·published 2007-09-10 19:05 UTC
rendered paste body
// 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;}