函数
walk_nav_menu_tree ( $items, $depth, $args )
- 参数
-
-
(array)
$items
The menu items, sorted by each menu item’s menu order.- Required: 是
-
(int)
$depth
Depth of the item in reference to parents.- Required: 是
-
(stdClass)
$args
An object containing wp_nav_menu() arguments.- Required: 是
-
(array)
- 返回值
-
- (string) The HTML list content for the menu items.
- 定义位置
-
-
wp-includes/nav-menu-template.php
, line 619
-
wp-includes/nav-menu-template.php
- 引入
- 3.0.0
- 弃用
- –
Retrieves the HTML list content for nav menu items.
function walk_nav_menu_tree( $items, $depth, $args ) { $walker = ( empty( $args->walker ) ) ? new Walker_Nav_Menu : $args->walker; return $walker->walk( $items, $depth, $args ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。