Walker_Category::start_lvl( string $output, int $depth, array $args = array() )

Starts the list before the elements are added.

Description

See also

Parameters

$outputstringrequired
Used to append additional content. Passed by reference.
$depthintoptional
Depth of category. Used for tab indentation. Default 0.
$argsarrayoptional
An array of arguments. Will only append content if style argument value is 'list'. See wp_list_categories() .
More Arguments from wp_list_categories( … $args )Array or string of arguments. See WP_Term_Query::__construct() for information on accepted arguments.

Default:array()

Source

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

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

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

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