WC_Cart::display_prices_including_tax()
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() WC Cart::display prices including tax code WC 9.6.0
public function display_prices_including_tax() { return apply_filters( 'woocommerce_cart_' . __FUNCTION__, 'incl' === $this->get_tax_price_display_mode() ); }