Warning: This method has been deprecated.

WC_Countries::countries_using_vat()

Gets an array of Non-EU countries that use VAT as the Local name for their taxes based on this list – https://en.wikipedia.org/wiki/Value-added_tax#Non-European_Union_countries


Description Description


Return Return

(string[])


Top ↑

Source Source

File: includes/class-wc-countries.php

	public function countries_using_vat() {
		wc_deprecated_function( 'countries_using_vat', '4.0', 'WC_Countries::get_vat_countries' );
		$countries = array( 'AL', 'AR', 'AZ', 'BS', 'BH', 'BY', 'BB', 'BO', 'EG', 'ET', 'CL', 'CO', 'EC', 'SV', 'FJ', 'GM', 'GH', 'GT', 'IN', 'IR', 'IL', 'KZ', 'MU', 'MK', 'MX', 'MD', 'MN', 'ME', 'NA', 'NP', 'NG', 'PS', 'PY', 'RU', 'RW', 'KN', 'SA', 'RS', 'ZA', 'KR', 'LK', 'TH', 'TR', 'UA', 'UY', 'UZ', 'VE', 'VN', 'AE' );

		return apply_filters( 'woocommerce_countries_using_vat', $countries );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.0.0 This method has been deprecated.
3.9.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.