wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.
walk_category_tree › WordPress Function
Od2.1.0
Przestarzałyn/a
› walk_category_tree ( $args )
Parametry: |
|
Użytkowanie: |
|
Zobacz: |
|
Powrót: |
|
Zdefiniowane na: |
|
Codex: | |
Dziennik zmian: |
|
Retrieves HTML list content for category list.
Powiązane Funkcje: walk_category_dropdown_tree, walk_page_tree, get_category_template, has_category, walk_nav_menu_tree
Źródło
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 ); }