walk_category_tree()
Retrieve HTML list content for category list.
Description
See also
Walker_Category::walk(): for parameters and return description.
Return
(string)
Source
File: wp-includes/category-template.php
function walk_category_tree() {
$args = func_get_args();
// the user's options are the third parameter
if ( empty( $args[2]['walker'] ) || ! ( $args[2]['walker'] instanceof Walker ) ) {
$walker = new Walker_Category;
} else {
$walker = $args[2]['walker'];
}
return call_user_func_array( array( $walker, 'walk' ), $args );
}
Changelog
Version | Description |
---|---|
WP-2.1.0 | Introduced. |