the_comment()WP 2.2.0

Iterate comment index in the comment loop.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

the_comment();

Заметки

  • Global. WP_Query. $wp_query WordPress Query object.

Список изменений

С версии 2.2.0 Введена.

Код the_comment() WP 6.6.2

function the_comment() {
	global $wp_query;

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

	$wp_query->the_comment();
}