Uses
Uses | Description |
---|---|
wp-includes/class-wp-walker.php: Walker::walk() | Display array of elements hierarchically. |
Retrieves HTML list content for category list.
(mixed) (Required) Elements array, maximum hierarchical depth and optional additional arguments.
(string)
File: wp-includes/category-template.php
function walk_category_tree( ...$args ) { // The user's options are the third parameter. if ( empty( $args[2]['walker'] ) || ! ( $args[2]['walker'] instanceof Walker ) ) { $walker = new Walker_Category; } else { /** * @var Walker $walker */ $walker = $args[2]['walker']; } return $walker->walk( ...$args ); }
Version | Description |
---|---|
5.3.0 | Formalized the existing ...$args parameter by adding it to the function signature. |
2.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/walk_category_tree