woocommerce_api_orders_bulk_response filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_api_orders_bulk_response', 'filter_function_name_3425', 10, 2 ); function filter_function_name_3425( $orders, $that ){ // filter... return $orders; }
- $orders
- -
- $that
- -
Where the hook is called
woocommerce_api_orders_bulk_response
woocommerce/includes/legacy/api/v2/class-wc-api-orders.php 1823
return array( 'orders' => apply_filters( 'woocommerce_api_orders_bulk_response', $orders, $this ) );
woocommerce/includes/legacy/api/v3/class-wc-api-orders.php 1870
return array( 'orders' => apply_filters( 'woocommerce_api_orders_bulk_response', $orders, $this ) );