WC_Cart::get_total PHP Method

get_total() public method

Gets the order total (after calculation).
public get_total ( ) : string
return string formatted price
    public function get_total()
    {
        return apply_filters('woocommerce_cart_total', wc_price($this->total));
    }
WC_Cart