woocommerce_cart_item_product
The WooCommerce Rejoiner woocommerce cart item product hook.
Description
apply_filters( 'woocommerce_cart_item_product', (unknown) $cart_item_data, (unknown) $cart_item, (unknown) $cart_item_key );
Parameters (3)
- 0. $cart_item_data (unknown)
- The cart item data.
- 1. $cart_item (unknown)
- The cart item.
- 2. $cart_item_key (unknown)
- The cart item key.
Usage
- To run the hook, copy the example below.
- $cart_item_data = apply_filters( 'woocommerce_cart_item_product', $cart_item_data, $cart_item, $cart_item_key );
- if ( !empty( $cart_item_data ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the woocommerce_cart_item_product callback
- function filter_woocommerce_cart_item_product( $cart_item_data, $cart_item, $cart_item_key ) {
- // make filter magic happen here...
- return $cart_item_data;
- };
- // add the filter
- add_filter( 'woocommerce_cart_item_product', 'filter_woocommerce_cart_item_product', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'woocommerce_cart_item_product', 'filter_woocommerce_cart_item_product', 10, 3 );
Defined (1)
The filter is defined in the following location(s).
- /includes/class-wc-rejoiner.php
- $_product = apply_filters( 'woocommerce_cart_item_product', $cart_item['data'], $cart_item, $cart_item_key );