Skip to content

Instantly share code, notes, and snippets.

@omurphy27
Last active October 8, 2015 21:35
Show Gist options
  • Save omurphy27/3ed67bd14c693865b21c to your computer and use it in GitHub Desktop.
Save omurphy27/3ed67bd14c693865b21c to your computer and use it in GitHub Desktop.
WooCommerce Header Cart Items Link
<?php global $woocommerce; ?>
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>" class="cart-link">
Cart (<span><?php echo sprintf(_n('%d', '%d', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?></span>)
</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment