Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shameemreza/a62b9ddb9e1d456a9c6633433741c55f to your computer and use it in GitHub Desktop.
Save shameemreza/a62b9ddb9e1d456a9c6633433741c55f to your computer and use it in GitHub Desktop.
Empty the cart on logout in WooCommerce
function wc_empty_cart_logout() {
if( function_exists('WC') ){
WC()->cart->empty_cart();
}
}
add_action('wp_logout', 'wc_empty_cart_logout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment