wpseek.com
A WordPress-centric search engine for devs and theme authors



the_comment › WordPress Function

Since2.2.0
Deprecatedn/a
the_comment ( No parameters )
Defined at:
Codex:

Iterate comment index in the comment loop.



Source

function the_comment() {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		return;
	}

	$wp_query->the_comment();
}