Skip to content

Instantly share code, notes, and snippets.

@dariodev
Forked from mikejolley/gist:2044101
Created January 4, 2017 20:18
Show Gist options
  • Save dariodev/a9b969605fe8b65aa790b2a0759d8b26 to your computer and use it in GitHub Desktop.
Save dariodev/a9b969605fe8b65aa790b2a0759d8b26 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_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