ActionScheduler_wpCommentLogger::filter_comment_feed()publicWC 1.0

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() code WC 8.7.0

public function filter_comment_feed( $where, $query ) {
	if ( is_comment_feed() ) {
		$where .= $this->get_where_clause();
	}
	return $where;
}