Walker_Category_Checklist::end_lvl()
Ends the list of after the elements are added.
Метод класса: Walker_Category_Checklist{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$Walker_Category_Checklist = new Walker_Category_Checklist(); $Walker_Category_Checklist->end_lvl( $output, $depth, $args );
- $output(строка) (обязательный) (передается по ссылке — &)
- Used to append additional content (passed by reference).
- $depth(int)
- Depth of category. Used for tab indentation.
- $args(массив)
- An array of arguments. See wp_terms_checklist().
По умолчанию: array()
Заметки
- Смотрите: Walker::end_lvl()
Список изменений
С версии 2.5.1 | Введена. |
Код Walker_Category_Checklist::end_lvl() Walker Category Checklist::end lvl WP 6.7.1
public function end_lvl( &$output, $depth = 0, $args = array() ) { $indent = str_repeat( "\t", $depth ); $output .= "$indent</ul>\n"; }