Open ghost opened 4 years ago
Hi friends. I want to fetch all orders and put them in array but this code returns : Undefined index: X-WP-TotalPages
$params = [ 'per_page' => 100, 'page' => 1 ]; $woocommerceorder = Woocommerce::get('orders', $params); while (Woocommerce::hasNextPage()) { $params = [ 'per_page' => 100, 'page' => Woocommerce::nextPage() ]; $woocommerceorderpart = Woocommerce::get('orders', $params); $woocommerceorder = array_merge($woocommerceorder, $woocommerceorderpart); }
any idea ?
See my pull request #57 for a fix for this issue.
Hi friends. I want to fetch all orders and put them in array but this code returns : Undefined index: X-WP-TotalPages
any idea ?