Advertisement
vapvarun

BuddyPress Add Country List

May 31st, 2020
2,501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.30 KB | None | 0 0
  1. function bp_add_custom_country_list() {
  2.  
  3. if ( !xprofile_get_field_id_from_name('Country') && 'bp-profile-setup' == $_GET['page'] ) {
  4.  
  5. $country_list_args = array(
  6. 'field_group_id' => 1,
  7. 'name' => 'Country',
  8. 'description' => 'Please select your country',
  9. 'can_delete' => true,
  10. 'field_order' => 2,
  11. 'is_required' => false,
  12. 'type' => 'selectbox',
  13. 'order_by' => 'custom'
  14.  
  15. );
  16.  
  17. $country_list_id = xprofile_insert_field( $country_list_args );
  18.  
  19. if ( $country_list_id ) {
  20.  
  21. $countries = array(
  22. "Afghanistan",
  23. "Albania",
  24. "Algeria",
  25. "Andorra",
  26. "Angola",
  27. "Antigua and Barbuda",
  28. "Argentina",
  29. "Armenia",
  30. "Australia",
  31. "Austria",
  32. "Azerbaijan",
  33. "Bahamas",
  34. "Bahrain",
  35. "Bangladesh",
  36. "Barbados",
  37. "Belarus",
  38. "Belgium",
  39. "Belize",
  40. "Benin",
  41. "Bhutan",
  42. "Bolivia",
  43. "Bosnia and Herzegovina",
  44. "Botswana",
  45. "Brazil",
  46. "Brunei",
  47. "Bulgaria",
  48. "Burkina Faso",
  49. "Burundi",
  50. "Cambodia",
  51. "Cameroon",
  52. "Canada",
  53. "Cape Verde",
  54. "Central African Republic",
  55. "Chad",
  56. "Chile",
  57. "China",
  58. "Colombi",
  59. "Comoros",
  60. "Congo (Brazzaville)",
  61. "Congo",
  62. "Costa Rica",
  63. "Cote d'Ivoire",
  64. "Croatia",
  65. "Cuba",
  66. "Cyprus",
  67. "Czech Republic",
  68. "Denmark",
  69. "Djibouti",
  70. "Dominica",
  71. "Dominican Republic",
  72. "East Timor (Timor Timur)",
  73. "Ecuador",
  74. "Egypt",
  75. "El Salvador",
  76. "Equatorial Guinea",
  77. "Eritrea",
  78. "Estonia",
  79. "Ethiopia",
  80. "Fiji",
  81. "Finland",
  82. "France",
  83. "Gabon",
  84. "Gambia, The",
  85. "Georgia",
  86. "Germany",
  87. "Ghana",
  88. "Greece",
  89. "Grenada",
  90. "Guatemala",
  91. "Guinea",
  92. "Guinea-Bissau",
  93. "Guyana",
  94. "Haiti",
  95. "Honduras",
  96. "Hungary",
  97. "Iceland",
  98. "India",
  99. "Indonesia",
  100. "Iran",
  101. "Iraq",
  102. "Ireland",
  103. "Israel",
  104. "Italy",
  105. "Jamaica",
  106. "Japan",
  107. "Jordan",
  108. "Kazakhstan",
  109. "Kenya",
  110. "Kiribati",
  111. "Korea, North",
  112. "Korea, South",
  113. "Kuwait",
  114. "Kyrgyzstan",
  115. "Laos",
  116. "Latvia",
  117. "Lebanon",
  118. "Lesotho",
  119. "Liberia",
  120. "Libya",
  121. "Liechtenstein",
  122. "Lithuania",
  123. "Luxembourg",
  124. "Macedonia",
  125. "Madagascar",
  126. "Malawi",
  127. "Malaysia",
  128. "Maldives",
  129. "Mali",
  130. "Malta",
  131. "Marshall Islands",
  132. "Mauritania",
  133. "Mauritius",
  134. "Mexico",
  135. "Micronesia",
  136. "Moldova",
  137. "Monaco",
  138. "Mongolia",
  139. "Morocco",
  140. "Mozambique",
  141. "Myanmar",
  142. "Namibia",
  143. "Nauru",
  144. "Nepal",
  145. "Netherlands",
  146. "New Zealand",
  147. "Nicaragua",
  148. "Niger",
  149. "Nigeria",
  150. "Norway",
  151. "Oman",
  152. "Pakistan",
  153. "Palau",
  154. "Panama",
  155. "Papua New Guinea",
  156. "Paraguay",
  157. "Peru",
  158. "Philippines",
  159. "Poland",
  160. "Portugal",
  161. "Qatar",
  162. "Romania",
  163. "Russia",
  164. "Rwanda",
  165. "Saint Kitts and Nevis",
  166. "Saint Lucia",
  167. "Saint Vincent",
  168. "Samoa",
  169. "San Marino",
  170. "Sao Tome and Principe",
  171. "Saudi Arabia",
  172. "Senegal",
  173. "Serbia and Montenegro",
  174. "Seychelles",
  175. "Sierra Leone",
  176. "Singapore",
  177. "Slovakia",
  178. "Slovenia",
  179. "Solomon Islands",
  180. "Somalia",
  181. "South Africa",
  182. "Spain",
  183. "Sri Lanka",
  184. "Sudan",
  185. "Suriname",
  186. "Swaziland",
  187. "Sweden",
  188. "Switzerland",
  189. "Syria",
  190. "Taiwan",
  191. "Tajikistan",
  192. "Tanzania",
  193. "Thailand",
  194. "Togo",
  195. "Tonga",
  196. "Trinidad and Tobago",
  197. "Tunisia",
  198. "Turkey",
  199. "Turkmenistan",
  200. "Tuvalu",
  201. "Uganda",
  202. "Ukraine",
  203. "United Arab Emirates",
  204. "United Kingdom",
  205. "United States",
  206. "Uruguay",
  207. "Uzbekistan",
  208. "Vanuatu",
  209. "Vatican City",
  210. "Venezuela",
  211. "Vietnam",
  212. "Yemen",
  213. "Zambia",
  214. "Zimbabwe"
  215. );
  216.  
  217. foreach ( $countries as $country ) {
  218.  
  219. xprofile_insert_field( array(
  220. 'field_group_id' => 1,
  221. 'parent_id' => $country_list_id,
  222. 'type' => 'option',
  223. 'name' => $country,
  224. 'option_order' => $i++
  225. ));
  226.  
  227. }
  228.  
  229. }
  230. }
  231. }
  232. add_action('bp_init', 'bp_add_custom_country_list');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement