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

Ends the list of after the elements are added.


Description Description

See also See also


Top ↑

Parameters Parameters

$output

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

$depth

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

$args

(Optional) Will only append content if style argument value is 'list'.

Default value: array()


Top ↑

Source Source

File: includes/walkers/class-wc-product-cat-list-walker.php

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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