اضافة مناطق و مدن المغرب الى ووكومرس
ADD MOROCCAN STATES TO WOOCOMMERCE
/**
* Add or modify States
*/
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['MA'] = array(
'MA-01' => 'Casablanca',
'MA-02' => 'Marrakesh',
'MA-03' => 'Tangier',
);
return $states;
}