walk_page_dropdown_tree()WP 2.1.0

Retrieves HTML dropdown (select) content for page list.

Хуков нет.

Возвращает

Строку.

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

walk_page_dropdown_tree( ...$args );
...$args(разное) (обязательный)
Elements array, maximum hierarchical depth and optional additional arguments.

Заметки

  • Смотрите: Walker_PageDropdown::walk() for parameters and return description.

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

С версии 2.1.0 Введена.
С версии 5.3.0 Formalized the existing ...$args parameter by adding it to the function signature.

Код walk_page_dropdown_tree() WP 6.5.2

function walk_page_dropdown_tree( ...$args ) {
	if ( empty( $args[2]['walker'] ) ) { // The user's options are the third parameter.
		$walker = new Walker_PageDropdown();
	} else {
		/**
		 * @var Walker $walker
		 */
		$walker = $args[2]['walker'];
	}

	return $walker->walk( ...$args );
}