WP_Query::is_comment_feed
Determines whether the query is for a comments feed.
Method of the class: WP_Query{}
No Hooks.
Returns
true|false. Whether the query is for a comments feed.
Usage
global $wp_query; $wp_query->is_comment_feed();
Changelog
| Since 3.1.0 | Introduced. |
WP_Query::is_comment_feed() WP Query::is comment feed code WP 7.0
public function is_comment_feed() {
return (bool) $this->is_comment_feed;
}