Created
January 28, 2011 01:15
-
-
Save sproutventure/799639 to your computer and use it in GitHub Desktop.
Modify GB States
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter('getStates','new_states'); | |
function new_states() | |
{ | |
return array( | |
'' => 'Select', | |
'AL' => 'Alabama', | |
'AK' => 'Alaska', | |
'AS' => 'American Samoa', | |
'AZ' => 'Arizona', | |
'AR' => 'Arkansas', | |
'AE' => 'Armed Forces - Europe', | |
'AP' => 'Armed Forces - Pacific', | |
'AA' => 'Armed Forces - USA/Canada', | |
'CA' => 'California', | |
'CO' => 'Colorado', | |
'CT' => 'Connecticut', | |
'DE' => 'Delaware', | |
'DC' => 'District of Columbia', | |
'FM' => 'Federated States of Micronesia', | |
'FL' => 'Florida', | |
'GA' => 'Georgia', | |
'GU' => 'Guam', | |
'HI' => 'Hawaii', | |
'ID' => 'Idaho', | |
'IL' => 'Illinois', | |
'IN' => 'Indiana', | |
'IA' => 'Iowa', | |
'KS' => 'Kansas', | |
'KY' => 'Kentucky', | |
'LA' => 'Louisiana', | |
'ME' => 'Maine', | |
'MH' => 'Marshall Islands', | |
'MD' => 'Maryland', | |
'MA' => 'Massachusetts', | |
'MI' => 'Michigan', | |
'MN' => 'Minnesota', | |
'MS' => 'Mississippi', | |
'MO' => 'Missouri', | |
'MT' => 'Montana', | |
'NE' => 'Nebraska', | |
'NV' => 'Nevada', | |
'NH' => 'New Hampshire', | |
'NJ' => 'New Jersey', | |
'NM' => 'New Mexico', | |
'NY' => 'New York', | |
'NC' => 'North Carolina', | |
'ND' => 'North Dakota', | |
'OH' => 'Ohio', | |
'OK' => 'Oklahoma', | |
'OR' => 'Oregon', | |
'PA' => 'Pennsylvania', | |
'PR' => 'Puerto Rico', | |
'RI' => 'Rhode Island', | |
'SC' => 'South Carolina', | |
'SD' => 'South Dakota', | |
'TN' => 'Tennessee', | |
'TX' => 'Texas', | |
'UT' => 'Utah', | |
'VT' => 'Vermont', | |
'VI' => 'Virgin Islands', | |
'VA' => 'Virginia', | |
'WA' => 'Washington', | |
'WV' => 'West Virginia', | |
'WI' => 'Wisconsin', | |
'WY' => 'Wyoming', | |
'null' => '== Provinces ==', | |
'AB' => 'Alberta', | |
'BC' => 'British Columbia', | |
'MB' => 'Manitoba', | |
'NB' => 'New Brunswick', | |
'NF' => 'Newfoundland', | |
'NT' => 'Northwest Territories', | |
'NS' => 'Nova Scotia', | |
'NU' => 'Nunavut', | |
'ON' => 'Ontario', | |
'PE' => 'Prince Edward Island', | |
'QC' => 'Quebec', | |
'SK' => 'Saskatchewan', | |
'YT' => 'Yukon Territory' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment