WC_Cart::persistent_cart_destroy PHP Method

persistent_cart_destroy() public method

Delete the persistent cart permanently.
    public function persistent_cart_destroy()
    {
        delete_user_meta(get_current_user_id(), '_woocommerce_persistent_cart');
    }
WC_Cart