WC_Countries::ex_tax_or_vat()publicWC 1.0

Include the Ex Tax label.

Method of the class: WC_Countries{}

Hooks from the method

Return

String.

Usage

$WC_Countries = new WC_Countries();
$WC_Countries->ex_tax_or_vat();

WC_Countries::ex_tax_or_vat() code WC 8.7.0

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 );
}