WC_Countries::tax_or_vat()
Correctly name tax in some countries VAT on the frontend.
Method of the class: WC_Countries{}
Hooks from the method
Return
String
.
Usage
$WC_Countries = new WC_Countries(); $WC_Countries->tax_or_vat();
WC_Countries::tax_or_vat() WC Countries::tax or vat code WC 9.4.2
public function tax_or_vat() { $return = in_array( $this->get_base_country(), $this->get_vat_countries(), true ) ? __( 'VAT', 'woocommerce' ) : __( 'Tax', 'woocommerce' ); return apply_filters( 'woocommerce_countries_tax_or_vat', $return ); }