Skip to content

Instantly share code, notes, and snippets.

@JohannMG
Created December 9, 2015 16:47
Show Gist options
  • Save JohannMG/b0a62a614585006e754c to your computer and use it in GitHub Desktop.
Save JohannMG/b0a62a614585006e754c to your computer and use it in GitHub Desktop.
Add a wordpress shortcode that pulls cart count.
add_shortcode('cart_count', 'cart_count_sc');
function cart_count_sc ($atts){
$total = WC()->cart->cart_contents_count;
return '<span class="cart-count">'. $total . '</span>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment