Skip to content

Instantly share code, notes, and snippets.

@Pushplaybang
Created February 1, 2014 14:48
Show Gist options
  • Save Pushplaybang/3234ae0283148a0ace35 to your computer and use it in GitHub Desktop.
Save Pushplaybang/3234ae0283148a0ace35 to your computer and use it in GitHub Desktop.
very basic cart count / url / total
global $woocommerce; ?>
<a class="cart-contents" href="<?php echo $woocommerce->cart->get_cart_url(); ?>" title="<?php _e('View your shopping cart', 'woothemes'); ?>"><?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count);?> - <?php echo $woocommerce->cart->get_cart_total(); ?></a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment