WP_Query::is_comment_feed() WordPress Method
The WP_Query::is_comment_feed() method is used to check if the current query is for a comment feed.
WP_Query::is_comment_feed() #
Is the query for a comments feed?
Return
(bool) Whether the query is for a comments feed.
Source
File: wp-includes/class-wp-query.php
public function is_comment_feed() { return (bool) $this->is_comment_feed; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |