WC_Cart::display_prices_including_tax()publicWC 3.3.0

Return whether or not the cart is displaying prices including tax, rather than excluding tax.

Method of the class: WC_Cart{}

Hooks from the method

Return

true|false.

Usage

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

Changelog

Since 3.3.0 Introduced.

WC_Cart::display_prices_including_tax() code WC 8.6.1

public function display_prices_including_tax() {
	return apply_filters( 'woocommerce_cart_' . __FUNCTION__, 'incl' === $this->get_tax_price_display_mode() );
}