WP_Query::is_comment_feed() public WP 3.1.0
Is the query for a comments feed?
{} Это метод класса: WP_Query{}
Хуков нет.
Возвращает
true/false. Whether the query is for a comments feed.
Использование
global $wp_query; $wp_query->is_comment_feed();
Список изменений
С версии 3.1.0 | Введена. |
Код WP_Query::is_comment_feed() WP Query::is comment feed WP 5.6.2
public function is_comment_feed() {
return (bool) $this->is_comment_feed;
}