Skip to content

Instantly share code, notes, and snippets.

@woogists
woogists / wc-add-modify-states.php
Last active May 18, 2021 02:14
[General Snippets] Add or modify states
/**
* Add or modify States
*/
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['XX'] = array(
'XX1' => 'State 1',
'XX2' => 'State 2'