get_batch_size(); $offset = ( $batch_number - 1 ) * $batch_size; $query_args = array( 'post_type' => 'shop_coupon', 'post_status' => 'publish', 'posts_per_page' => $batch_size, 'offset' => $offset, 'order' => 'ASC', 'orderby' => 'ID', ); return FeedUploadUtils::get_coupons_data( $query_args ); } /** * Get the job's batch size. * * @return int * @since 3.5.0 */ protected function get_batch_size(): int { return 50; } }