这就是我如何使用WooCommerce在最近的一个项目中获取国家代码,使用geolocate_ip
的方法WC_Geolocation
班
$country = \'US\';
if (class_exists(\'WC_Geolocation\')) {
$location = WC_Geolocation::geolocate_ip(\'\', true, false);
if (isset($location[\'country\'])) {
$country = $location[\'country\'];
}
}
switch ($country) {
case \'AU\':
break;
case \'US\':
break:
}