Skip to content

Instantly share code, notes, and snippets.

@Konark-Web
Created September 4, 2020 08:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Konark-Web/0d2ac570486fa1b3770853263df3ad6b to your computer and use it in GitHub Desktop.
Save Konark-Web/0d2ac570486fa1b3770853263df3ad6b to your computer and use it in GitHub Desktop.
function clear_cart_after_logout() {
WC()->cart->empty_cart();
// $cart = new WC_Cart();
// $cart->empty_cart( $clear_persistent_cart = true );
}
add_action('wp_logout', 'clear_cart_after_logout');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment