WP_Query::the_comment() public WP 2.2.0
Sets up the current comment.
{} It's a method of the class: WP_Query{}
Hooks from the method
Return
Null. Nothing.
Usage
global $wp_query; $wp_query->the_comment();
Notes
- Global. WP_Comment. $comment Global comment object.
Changelog
Since 2.2.0 | Introduced. |
Code of WP_Query::the_comment() WP Query::the comment WP 5.6
public function the_comment() {
global $comment;
$comment = $this->next_comment();
if ( 0 == $this->current_comment ) {
/**
* Fires once the comment loop is started.
*
* @since 2.2.0
*/
do_action( 'comment_loop_start' );
}
}