sinanisler logo

Adding Custom Country WooCommerce

function si_add_new_country( $country ) {
 $country["AEDUB"] = 'Dubai';
 return $country;
}
add_filter( 'woocommerce_countries', 'si_add_new_country', 10, 1 );

Leave the first comment