Last active
October 8, 2015 21:35
-
-
Save omurphy27/3ed67bd14c693865b21c to your computer and use it in GitHub Desktop.
WooCommerce Header Cart Items Link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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