Skip to content

Instantly share code, notes, and snippets.

@krishna19
Forked from mikejolley/gist:2044101
Created November 1, 2015 13:56
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 krishna19/07e1e79aa1d742dc4c32 to your computer and use it in GitHub Desktop.
Save krishna19/07e1e79aa1d742dc4c32 to your computer and use it in GitHub Desktop.
WooCommerce - Show number of items in cart and total
<a class="cart-contents" href="<?php echo WC()->cart->get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf (_n( '%d item', '%d items', WC()->cart->cart_contents_count ), WC()->cart->cart_contents_count ); ?> - <?php echo WC()->cart->get_cart_total(); ?></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment