Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // WooCommerce - Add states where not included in WooCommerce
- add_filter( 'woocommerce_states', 'custom_states' );
- function custom_states( $states ) {
- $states['CU'] = array (
- 'PR' => 'Pinar del Río',
- 'AR' => 'Artemisa',
- );
- return $states;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement