【问题标题】:Remove countries in WooCommerce from an array of defined country codes从一系列定义的国家代码中删除 WooCommerce 中的国家
【发布时间】:2021-06-05 03:14:48
【问题描述】:
【问题讨论】:
标签:
php
wordpress
woocommerce
unset
country-codes
【解决方案1】:
以下将从定义的国家代码数组中删除 WooCommerce 中的国家:
add_filter( 'woocommerce_countries', 'woo_remove_countries' );
function woo_remove_countries( $countries ) {
// Here set in the array the country codes you from countries you want to remove
$countries_to_remove = array('US', 'GB', 'RU');
foreach ( $countries_to_remove as $country_code ) {
unset($countries[$country_code]);
}
return $countries;
}
代码位于活动子主题(或活动主题)的functions.php 文件中。经过测试并且可以工作。