Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save developer-anuragsingh/5d9460d16c685497b1ae28dc0a5e14e5 to your computer and use it in GitHub Desktop.
Save developer-anuragsingh/5d9460d16c685497b1ae28dc0a5e14e5 to your computer and use it in GitHub Desktop.
[Theming Snippets] Show cart contents / total
// Use in conjunction with https://gist.github.com/woogists/c0a86397015b88f4ca722782a724ff6c
<a class="cart-customlocation" href="<?php echo wc_get_cart_url(); ?>" title="<?php _e( 'View your shopping cart' ); ?>"><?php echo sprintf ( _n( '%d item', '%d items', WC()->cart->get_cart_contents_count() ), WC()->cart->get_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