WC_Cart::get_tax_price_display_mode()publicWC 1.0

Returns 'incl' if tax should be included in cart, otherwise returns 'excl'.

Метод класса: WC_Cart{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Cart = new WC_Cart();
$WC_Cart->get_tax_price_display_mode();

Код WC_Cart::get_tax_price_display_mode() WC 8.7.0

public function get_tax_price_display_mode() {
	if ( $this->get_customer() && $this->get_customer()->get_is_vat_exempt() ) {
		return 'excl';
	}

	return get_option( 'woocommerce_tax_display_cart' );
}