2016-10-13 161 views
2

我正在为我的手机抬头创建购物车链接。我只是想在购物车图标后面显示购物车的数量。没有文字,只有一个数字。显示WooCommerce迷你购物车中物品的数量

我该怎么办?

我的代码是这样的:

<div class="mobile-cart"> 
<a href="mywebsite.com/cart"> 
<img src="cart.png"> 
Here should be the code for no. of items 
</a> 
</div> 

感谢。

回答

1

你只需要使用方法get_cart_contents_count()WC_cart类,这种方式:

<div class="mobile-cart"> 
    <a href="mywebsite.com/cart"> 
     <img src="cart.png"> 
     <span><?php echo WC()->cart->get_cart_contents_count(); ?></span> 
    </a> 
</div> 

参考:WC_Cart class - get_cart_contents_count() method

+0

感谢的人。你太棒了。你解决了我的一个大问题 – user6952436

相关问题