ActionScheduler_wpCommentLogger::filter_comment_feed()
Make sure Action Scheduler logs are excluded from comment feeds, which use WP_Query, not the WP_Comment_Query class handled by @see self::filter_comment_queries().
Method of the class: ActionScheduler_wpCommentLogger{}
No Hooks.
Return
String
.
Usage
$ActionScheduler_wpCommentLogger = new ActionScheduler_wpCommentLogger(); $ActionScheduler_wpCommentLogger->filter_comment_feed( $where, $query );
- $where(string) (required)
- -
- $query(WP_Query) (required)
- -
ActionScheduler_wpCommentLogger::filter_comment_feed() ActionScheduler wpCommentLogger::filter comment feed code WC 9.3.3
public function filter_comment_feed( $where, $query ) { if ( is_comment_feed() ) { $where .= $this->get_where_clause(); } return $where; }