标签: php wordpress woocommerce geolocation conditional-statements
基于对先前问题的回答“ Custom Redirection based on Geolocation for specific products in WooCommerce” ,我应该将国家/地区条件设置为值数组。
感谢您的帮助。
答案 0 :(得分:0)
要处理多个国家/地区,您必须在以下条件下进行替换:
WC_Geolocation::geolocate_ip()['country'] === 'GE'
作者:
in_array( WC_Geolocation::geolocate_ip()['country'], array( 'GE', 'UK', 'FR' ) )
其中array( 'GE', 'UK', 'FR' )是国家/地区代码的数组。
array( 'GE', 'UK', 'FR' )