WC_Shipping_Method::is_taxable()
Whether or not we need to calculate tax on top of the shipping rate.
Description Description
Return Return
(boolean)
Source Source
File: includes/abstracts/abstract-wc-shipping-method.php
public function is_taxable() { return wc_tax_enabled() && 'taxable' === $this->tax_status && ( WC()->customer && ! WC()->customer->get_is_vat_exempt() ); }