woocommerce - Get Cart Total as number

前端 未结 6 820
难免孤独
难免孤独 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:26

    I have code like this and working perfect:

    if ( ! WC()->cart->prices_include_tax ) {
        $amount = WC()->cart->cart_contents_total;
    } else {
        $amount = WC()->cart->cart_contents_total + WC()->cart->tax_total;
    }
    

    good luck !

提交回复
热议问题