Walker::end_lvl()publicWP 2.1.0

Ends the list of after the elements are added.

The $args parameter holds additional values that may be used with the child class methods. This method finishes the list at the end of output of the elements.

Method of the class: Walker{}

No Hooks.

Return

null. Nothing (null).

Usage

$Walker = new Walker();
$Walker->end_lvl( $output, $depth, $args );
$output(string) (required) (passed by reference — &)
Used to append additional content (passed by reference).
$depth(int)
Depth of the item.
$args(array)
An array of additional arguments.
Default: array()

Changelog

Since 2.1.0 Introduced.

Walker::end_lvl() code WP 6.7.1

public function end_lvl( &$output, $depth = 0, $args = array() ) {}