Starts the list before the elements are added.
(string) (Required) Used to append additional content. Passed by reference.
(int) (Optional) Depth of category. Used for tab indentation. Default 0.
(array) (Optional) An array of arguments. Will only append content if style argument value is 'list'. See wp_list_categories().
Default value: array()
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"; }
Version | Description |
---|---|
2.1.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/walker_category/start_lvl