我正在尝试按国家列出清单.我知道如何为各州做到这一点.我用过
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['IN'] = array(
'PB' => 'Punjab'
);
return $states;
}
为了达到国家的目的.但是如何制作自定义国家列表?
解决方法:
这是你想要的吗 ?
add_filter('woocommerce_countries','custom_country', 10, 1);
function custom_country($mycountry){
$mycountry = array(
'AF' => __( 'Afghanistan', 'woocommerce' ),
'IN' => __( 'India', 'woocommerce' )
);
return $mycountry;
}