2016-10-13 224 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

相關問題