Skip to content

Instantly share code, notes, and snippets.

@faysalhaque
Last active August 29, 2015 14:21
Show Gist options
  • Save faysalhaque/6d52916cf0d39e5bf67f to your computer and use it in GitHub Desktop.
Save faysalhaque/6d52916cf0d39e5bf67f to your computer and use it in GitHub Desktop.
Country list for carees wp theme.
<?php
$countryList = array(
/* Region Name */
"Australia and New Zealand" => array(
/* Country Name */
"Australia"=>array(
/* State Name */
'Australian Capital Territory',
'New South Wales',
'Northern Territory',
'Queensland',
'South Australia',
'Tasmania',
'Victoria',
'Western Australia'
),
/* Country Name */
"New Zealand" => array(
/* State Name */
'Northland',
'Auckland',
'Waikato',
'Bay of Plenty',
'Taranaki',
'Hawke&rsquo;s Bay',
'Manawatu-Wanganui',
'Wellington',
'Nelson',
'Marlborough',
'Tasman',
'West Coast',
'Canterbury',
'Otago',
'Southland',
),
),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment