Skip to content

Instantly share code, notes, and snippets.

@vishalbasnet23
Created October 28, 2014 09:08
Show Gist options
  • Select an option

  • Save vishalbasnet23/f59e83843f522221f1f2 to your computer and use it in GitHub Desktop.

Select an option

Save vishalbasnet23/f59e83843f522221f1f2 to your computer and use it in GitHub Desktop.
WooCommerce Clear Cart Url
<a href="<?php echo home_url(); ?>/foo/?empty-cart">Clear Cart</a>
<?php
add_action( 'init', 'woocommerce_clear_cart_url' );
function woocommerce_clear_cart_url() {
global $woocommerce;
if ( isset( $_GET['empty-cart'] ) ) {
$woocommerce->cart->empty_cart();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment