Walker_Category_Checklist::start_lvl()publicWP 2.5.1

Starts the list before the elements are added.

Method of the class: Walker_Category_Checklist{}

No Hooks.

Return

null. Nothing (null).

Usage

$Walker_Category_Checklist = new Walker_Category_Checklist();
$Walker_Category_Checklist->start_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. See wp_terms_checklist().
Default: array()

Notes

  • See: Walker:start_lvl()

Changelog

Since 2.5.1 Introduced.

Walker_Category_Checklist::start_lvl() code WP 6.4.3

public function start_lvl( &$output, $depth = 0, $args = array() ) {
	$indent  = str_repeat( "\t", $depth );
	$output .= "$indent<ul class='children'>\n";
}