woocommerce_cart_emptied
Usage
add_action( 'woocommerce_cart_emptied', 'wp_kama_woocommerce_cart_emptied_action' ); /** * Function for `woocommerce_cart_emptied` action-hook. * * @param $clear_persistent_cart * * @return void */ function wp_kama_woocommerce_cart_emptied_action( $clear_persistent_cart ){ // action... }
- $clear_persistent_cart
- -
Where the hook is called
woocommerce_cart_emptied
woocommerce/includes/class-wc-cart.php 658
do_action( 'woocommerce_cart_emptied', $clear_persistent_cart );
Where the hook is used in WooCommerce
woocommerce/includes/class-wc-cart-session.php 75
add_action( 'woocommerce_cart_emptied', array( $this, 'destroy_cart_session' ) );