woocommerce_restore_cart_item
Usage
add_action( 'woocommerce_restore_cart_item', 'wp_kama_woocommerce_restore_cart_item_action', 10, 2 );
/**
* Function for `woocommerce_restore_cart_item` action-hook.
*
* @param $cart_item_key
* @param $that
*
* @return void
*/
function wp_kama_woocommerce_restore_cart_item_action( $cart_item_key, $that ){
// action...
}
- $cart_item_key
- -
- $that
- -
Where the hook is called
woocommerce_restore_cart_item
woocommerce/includes/class-wc-cart.php 1391
do_action( 'woocommerce_restore_cart_item', $cart_item_key, $this );