the_comment()
Iterate comment index in the comment loop.
Хуков нет.
Возвращает
null. Ничего (null).
Использование
the_comment();
Заметки
- Global. WP_Query.
$wp_queryWordPress Query object.
Список изменений
| С версии 2.2.0 | Введена. |
Код the_comment() the comment WP 7.0.4
function the_comment() {
global $wp_query;
if ( ! isset( $wp_query ) ) {
return;
}
$wp_query->the_comment();
}