Advertisement
Aurangajeb

wpuf_get_countries as country name

Aug 7th, 2020
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. /** wpuf_get_countries-as-country-name **/
  2.  
  3. $country_code = 'US';
  4. $country = array_filter( wpuf_get_countries(), function ( $item ) use ( $country_code ) {
  5.     return $item['code'] === $country_code;
  6. } );
  7. $country = array_pop( $country );
  8. echo $country['name'];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement