Skip to content

Instantly share code, notes, and snippets.

@almone
Forked from mikejolley/gist:3012597
Created December 3, 2015 03:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save almone/0b7129c5dee3757aee26 to your computer and use it in GitHub Desktop.
Save almone/0b7129c5dee3757aee26 to your computer and use it in GitHub Desktop.
WooCommerce - Manipulate the states
/**
* Code goes in functions.php or a custom plugin. Replace XX with the country code your changing.
*/
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['XX'] = array(
'XX1' => 'State 1',
'XX2' => 'State 2'
);
return $states;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment