Walker::end_lvl()
Ends the list of after the elements are added.
The $args parameter holds additional values that may be used with the child class methods. This method finishes the list at the end of output of the elements.
Метод класса: Walker{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Walker = new Walker(); $Walker->end_lvl( $output, $depth, $args );
- $output(строка) (обязательный) (передается по ссылке — &)
- Used to append additional content (passed by reference).
- $depth(int)
- Depth of the item.
- $args(массив)
- An array of additional arguments.
По умолчанию: array()
Список изменений
С версии 2.1.0 | Введена. |
Код Walker::end_lvl() Walker::end lvl WP 6.7.1
public function end_lvl( &$output, $depth = 0, $args = array() ) {}