Walker::end_lvl( string $output, int $depth, array $args = array() )

Ends the list of after the elements are added.

Description

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.

Parameters

$outputstringrequired
Used to append additional content (passed by reference).
$depthintrequired
Depth of the item.
$argsarrayoptional
An array of additional arguments.

Default:array()

More Information

This method is abstract and should be explicitly defined in the child class, as needed. Also note that $output is passed by reference, so any changes made to the variable within the following methods are automatically handled (no return, echo, or print needed).

This method “End Level” is run when the walker reaches the end of a “branch” in the tree structure. Generally, this method is used to add the closing tag of a container HTML element (such as </ol>, </ul>, or </div>) to $output.

Source

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

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.