WC_Cart_Session::persistent_cart_destroy()
Delete the persistent cart permanently.
Method of the class: WC_Cart_Session{}
Hooks from the method
Return
null
. Nothing (null).
Usage
$WC_Cart_Session = new WC_Cart_Session(); $WC_Cart_Session->persistent_cart_destroy();
WC_Cart_Session::persistent_cart_destroy() WC Cart Session::persistent cart destroy code WC 9.3.1
public function persistent_cart_destroy() { if ( get_current_user_id() && apply_filters( 'woocommerce_persistent_cart_enabled', true ) ) { delete_user_meta( get_current_user_id(), '_woocommerce_persistent_cart_' . get_current_blog_id() ); } }