Walker_Category::end_lvl()publicWP 2.1.0

Ends the list of after the elements are added.

Method of the class: Walker_Category{}

No Hooks.

Return

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

Changelog

Since 2.1.0 Introduced.

Walker_Category::end_lvl() code WP 6.5.2

public function end_lvl( &$output, $depth = 0, $args = array() ) {
	if ( 'list' !== $args['style'] ) {
		return;
	}

	$indent  = str_repeat( "\t", $depth );
	$output .= "$indent</ul>\n";
}