Walker_Comment::end_lvl() WordPress Method

TheWalker_Comment::end_lvl() method is used to end the level of comments. This is typically used when the comments are displayed in a threaded format.

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

Ends the list of items after 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 the current comment. Default 0.

$args

(array)(Optional) Will only append content if style argument value is 'ol' or 'ul'.

Default value: array()


Top ↑

Source

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

84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
public function end_lvl( &$output, $depth = 0, $args = array() ) {
    $GLOBALS['comment_depth'] = $depth + 1;
 
    switch ( $args['style'] ) {
        case 'div':
            break;
        case 'ol':
            $output .= "</ol><!-- .children -->\n";
            break;
        case 'ul':
        default:
            $output .= "</ul><!-- .children -->\n";
            break;
    }
}

Top ↑

Changelog

Changelog
VersionDescription
2.7.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.