我正在尝试制作国家/地区的自定义列表。我知道如何为州制造它。我用过
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['IN'] = array(
'PB' => 'Punjab'
);
return $states;
}
为州制作。但是如何制作自定义国家/地区列表?
答案 0 :(得分:2)
这是你想要的吗?
add_filter('woocommerce_countries','custom_country', 10, 1);
function custom_country($mycountry){
$mycountry = array(
'AF' => __( 'Afghanistan', 'woocommerce' ),
'IN' => __( 'India', 'woocommerce' )
);
return $mycountry;
}
答案 1 :(得分:0)
您可以将其粘贴到主题functions.php文件
中/* Add a new country to countries list */
function woo_add_my_country( $country ) {
$country["AE-DU"] = 'Dubai';
return $country;
}
add_filter( 'woocommerce_countries', 'woo_add_my_country', 10, 1 );
这是你的意思吗?