walk_nav_menu_tree()WP 3.0.0

Retrieves the HTML list content for nav menu items.

Хуков нет.

Возвращает

Строку. The HTML list content for the menu items.

Использование

walk_nav_menu_tree( $items, $depth, $args );
$items(массив) (обязательный)
The menu items, sorted by each menu item's menu order.
$depth(int) (обязательный)
Depth of the item in reference to parents.
$args(stdClass) (обязательный)
An object containing wp_nav_menu() arguments.

Список изменений

С версии 3.0.0 Введена.

Код walk_nav_menu_tree() WP 6.6.2

function walk_nav_menu_tree( $items, $depth, $args ) {
	$walker = ( empty( $args->walker ) ) ? new Walker_Nav_Menu() : $args->walker;

	return $walker->walk( $items, $depth, $args );
}