woocommerce - Get Cart Total as number

前端 未结 6 827
难免孤独
难免孤独 2020-12-16 01:03

I want to get total price of cart in my woocommerce plugin.

I want to get it as a float number like so: 21.00 but I don\'t know how to get it. My code outputs weird

6条回答
  •  庸人自扰
    2020-12-16 01:45

    global $woocommerce;
    $amount = $woocommerce->cart->cart_contents_total+$woocommerce->cart->tax_total;
    

    You can also convert $amount in float value as per your requirement.

提交回复
热议问题