Skip to content

Instantly share code, notes, and snippets.

@woogists
Last active May 18, 2021 02:14
Show Gist options
  • Save woogists/e3de3a4f30cc461b5a059f6158a5fe51 to your computer and use it in GitHub Desktop.
Save woogists/e3de3a4f30cc461b5a059f6158a5fe51 to your computer and use it in GitHub Desktop.
[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'
);
return $states;
}
@xDmiguelxD
Copy link

El código no sirve,

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment