feed_writer = $feed_writer; $this->feed_type = FeedManager::RATINGS_AND_REVIEWS; } /** * Get the feed data and return as an array. * * @return array */ public function get_feed_data(): array { $query_args = array( 'status' => 'approve', 'post_type' => 'product', 'comment_type' => 'review', ); return FeedUploadUtils::get_ratings_and_reviews_data( $query_args ); } }