Walker_Category_Checklist::end_lvl() WordPress Method

The end_lvl() method is used to end a category checklist level in WordPress. This function is called after the start_lvl() function.

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

Ends the list of after the elements are added.


Description

Top ↑

See also


Top ↑

Parameters

$output

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

$depth

(int)(Required)Depth of category. Used for tab indentation.

$args

(array)(Optional)An array of arguments. @see wp_terms_checklist()

Default value: array()


Top ↑

Source

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

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

Top ↑

Changelog

Changelog
VersionDescription
2.5.1Introduced.

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.