Walker_Category::start_lvl() WordPress Method

The Walker_Category::start_lvl() method is used to start the category list for a given parent category. This method is called by the Walker_Category::walk() method when it starts walking the category tree.

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

Starts the list before the elements are added.


Description

Top ↑

See also


Top ↑

Parameters

$output

(string)(Required)Used to append additional content. Passed by reference.

$depth

(int)(Optional) Depth of category. Used for tab indentation. Default 0.

$args

(array)(Optional) An array of arguments. Will only append content if style argument value is 'list'. See wp_list_categories().

Default value: array()


Top ↑

Source

File: wp-includes/class-walker-category.php

	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";
	}

Top ↑

Changelog

Changelog
VersionDescription
2.1.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.