wpseek.com
WordPress开发者和主题制作者的搜索引擎
walk_category_tree › WordPress Function
Since2.1.0
已弃用n/a
› walk_category_tree ( $args )
参数: |
|
用户: |
|
查看: |
|
返回: |
|
定义在: |
|
文档: | |
Change Log: |
|
Retrieves HTML list content for category list.
Related Functions: walk_category_dropdown_tree, walk_page_tree, get_category_template, has_category, walk_nav_menu_tree
源码
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 ); }