Skip to content

Instantly share code, notes, and snippets.

View madeskilz's full-sized avatar
🌐
Working

Adedoyin Michael Adekoniye madeskilz

🌐
Working
View GitHub Profile
@madeskilz
madeskilz / gist:88ed5b9a00c58845aec18d2e72dd3f01
Created May 18, 2018 13:42
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>