Walker_Category::end_lvl() WordPress Method
The Walker_Category::end_lvl() method is used to end the category level in WordPress. This method takes two parameters, the first being the category ID and the second being the number of levels to end.
Walker_Category::end_lvl( string $output, int $depth, array $args = array() ) #
Ends the list of after the elements are added.
Description
See also
Parameters
- $output
(string)(Required)Used to append additional content. Passed by reference.
- $depth
(int)(Optional) Depth of category. Used for tab indentation. Default 0.
- $args
(array)(Optional) An array of arguments. Will only append content if style argument value is 'list'. See wp_list_categories().
Default value: array()
Source
File: wp-includes/class-walker-category.php
public function end_lvl( &$output, $depth = 0, $args = array() ) { if ( 'list' !== $args['style'] ) { return; } $indent = str_repeat( "\t", $depth ); $output .= "$indent</ul>\n"; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.1.0 | Introduced. |