WP_Query::the_comment()publicWP 2.2.0

Sets up the current comment.

Method of the class: WP_Query{}

Hooks from the method

Return

null. Nothing (null).

Usage

global $wp_query;
$wp_query->the_comment();

Notes

  • Global. WP_Comment. $comment Global comment object.

Changelog

Since 2.2.0 Introduced.

WP_Query::the_comment() code WP 6.5.2

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' );
	}
}