woocommerce_api_tax_response
The WooCommerce woocommerce api tax response hook.
Description
Parameters (4)
- 0. $tax_data (unknown)
- The tax data.
- 1. $tax (unknown)
- The tax.
- 2. $fields (unknown)
- The fields.
- 3. $instance (unknown)
- The instance.
Usage
- To run the hook, copy the example below.
- $tax_data = apply_filters( 'woocommerce_api_tax_response', $tax_data, $tax, $fields, $instance );
- if ( !empty( $tax_data ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_api_tax_response callback
- function filter_woocommerce_api_tax_response( $tax_data, $tax, $fields, $instance ) {
- // make filter magic happen here...
- return $tax_data;
- };
- // add the filter
- add_filter( 'woocommerce_api_tax_response', 'filter_woocommerce_api_tax_response', 10, 4 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_api_tax_response', 'filter_woocommerce_api_tax_response', 10, 4 );
Defined (1)
The filter is defined in the following location(s).
- /includes/api/legacy/v3/class-wc-api-taxes.php
- return array( 'tax' => apply_filters( 'woocommerce_api_tax_response', $tax_data, $tax, $fields, $this ) );