woocommerce_rest_prepare_data_continent filter-hook . WC 1.0
Filter the location list returned from the API.
Allows modification of the loction data right before it is returned.
Usage
add_filter( 'woocommerce_rest_prepare_data_continent', 'filter_function_name_2022', 10, 3 ); function filter_function_name_2022( $response, $item, $request ){ // filter... return $response; }
- $response(WP_REST_Response)
- The response object.
- $item(array)
- The original list of continent(s), countries, and states.
- $request(WP_REST_Request)
- Request used to generate the response.
Where the hook is called
woocommerce_rest_prepare_data_continent
woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-data-continents-controller.php 219
return apply_filters( 'woocommerce_rest_prepare_data_continent', $response, $item, $request );