wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



the_comment › WordPress Function

Seit2.2.0
Veraltetn/v
the_comment ( Keine Parameter )
Definiert in:
Codex:

Iterate comment index in the comment loop.



Quellcode

function the_comment() {
	global $wp_query;

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

	$wp_query->the_comment();
}