Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@timersys
Last active November 24, 2022 13:07
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 timersys/2bf1c94c2d5328ceac4af30ec063c910 to your computer and use it in GitHub Desktop.
Save timersys/2bf1c94c2d5328ceac4af30ec063c910 to your computer and use it in GitHub Desktop.
Change dropdown widget country names
<?php
add_filter('geot/dropdown_widget/countries', function($countries) {
foreach( $countries as $i => $c ) {
if( $c->iso_code == 'US' ) {
$countries[$i]->country = 'USA';
}
if( $c->iso_code == 'GB' ) {
$countries[$i]->country = 'UK';
}
}
return $countries;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment