Walker_Page::end_lvl()
Outputs the end of the current level in the tree after elements are output.
Метод класса: Walker_Page{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Walker_Page = new Walker_Page(); $Walker_Page->end_lvl( $output, $depth, $args );
- $output(строка) (обязательный) (передается по ссылке — &)
- Used to append additional content (passed by reference).
- $depth(int)
- Depth of page. Used for padding.
- $args(массив)
- Arguments for outputting the end of the current level.
По умолчанию: empty array
Заметки
- Смотрите: Walker::end_lvl()
Список изменений
С версии 2.1.0 | Введена. |
Код Walker_Page::end_lvl() Walker Page::end lvl WP 6.6.1
public function end_lvl( &$output, $depth = 0, $args = array() ) { if ( isset( $args['item_spacing'] ) && 'preserve' === $args['item_spacing'] ) { $t = "\t"; $n = "\n"; } else { $t = ''; $n = ''; } $indent = str_repeat( $t, $depth ); $output .= "{$indent}</ul>{$n}"; }