woocommerce_api_product_tag_response

woocommerce_api_product_tag_response

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.9.3

apply_filters('woocommerce_api_product_tag_response') is found 1 times:

  • /includes/legacy/api/v3/class-wc-api-products.php line 942
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
                'description' => $term->description,
                'count'       => intval( $term->count ),
            );
     
            return array( 'product_tag' => apply_filters( 'woocommerce_api_product_tag_response', $tag, $id, $fields, $term, $this ) );
        } catch ( WC_API_Exception $e ) {
            return new WP_Error( $e->getErrorCode(), $e->getMessage(), array( 'status' => $e->getCode() ) );
        }
    }
     
    /**