Walker_Category::end_lvl
Ends the list of after the elements are added.
Method of the class: Walker_Category{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Walker_Category = new Walker_Category(); $Walker_Category->end_lvl( $output, $depth, $args );
- $output(string) (required) (passed by reference — &)
- Used to append additional content. Passed by reference.
- $depth(int)
- Depth of category. Used for tab indentation.
- $args(array)
- An array of arguments. Will only append content if style argument value is
'list'. See wp_list_categories().
Default:empty array
Notes
- See: Walker::end_lvl()
Changelog
| Since 2.1.0 | Introduced. |
Walker_Category::end_lvl() Walker Category::end lvl code WP 7.0
public function end_lvl( &$output, $depth = 0, $args = array() ) {
if ( 'list' !== $args['style'] ) {
return;
}
$indent = str_repeat( "\t", $depth );
$output .= "$indent</ul>\n";
}