基于地理位置的WooCommerce中多个国家/地区的自定义重定向

时间:2019-08-12 22:10:15

标签: php wordpress woocommerce geolocation conditional-statements

基于对先前问题的回答Custom Redirection based on Geolocation for specific products in WooCommerce” ,我应该将国家/地区条件设置为值数组。

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

要处理多个国家/地区,您必须在以下条件下进行替换:

WC_Geolocation::geolocate_ip()['country'] === 'GE'

作者:

in_array( WC_Geolocation::geolocate_ip()['country'], array( 'GE', 'UK', 'FR' ) )

其中array( 'GE', 'UK', 'FR' )是国家/地区代码的数组。