Skip to content

Instantly share code, notes, and snippets.

@WillBrubaker
Created June 13, 2018 15:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillBrubaker/d0f6d86ae3a7c0ae03257e003f9607da to your computer and use it in GitHub Desktop.
Save WillBrubaker/d0f6d86ae3a7c0ae03257e003f9607da to your computer and use it in GitHub Desktop.
add_filter( 'woocommerce_states', 'custom_woocommerce_states' );
function custom_woocommerce_states( $states ) {
$states['TR'] = array(
'TR87' => 'Bağcılar',
);
return $states;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment