WC_Cart::get_total PHP Метод

get_total() публичный Метод

Gets the order total (after calculation).
public get_total ( ) : string
Результат string formatted price
    public function get_total()
    {
        return apply_filters('woocommerce_cart_total', wc_price($this->total));
    }
WC_Cart