WC_Cart::get_total_ex_tax()
Gets the total excluding taxes.
Метод класса: WC_Cart{}
Хуки из метода
Возвращает
Строку
. formatted price
Использование
$WC_Cart = new WC_Cart(); $WC_Cart->get_total_ex_tax();
Код WC_Cart::get_total_ex_tax() WC Cart::get total ex tax WC 9.4.2
public function get_total_ex_tax() { return apply_filters( 'woocommerce_cart_total_ex_tax', wc_price( max( 0, $this->get_total( 'edit' ) - $this->get_total_tax() ) ) ); }