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