WC_Countries::ex_tax_or_vat()
Include the Ex Tax label.
Description Description
Return Return
(string)
Source Source
File: includes/class-wc-countries.php
public function ex_tax_or_vat() { $return = in_array( $this->get_base_country(), $this->get_vat_countries(), true ) ? __( '(ex. VAT)', 'woocommerce' ) : __( '(ex. tax)', 'woocommerce' ); return apply_filters( 'woocommerce_countries_ex_tax_or_vat', $return ); }