You appear to be a bot. Output may be restricted
Description
Given a country code, return the country name
Usage
$string = edd_get_country_name( $country_code );
Parameters
- $country_code
- ( string ) optional – The ISO Code for the country
Returns
string
Source
File name: easy-digital-downloads/includes/country-functions.php
Lines:
1 to 6 of 6
function edd_get_country_name( $country_code = '' ) { $country_list = edd_get_country_list(); $country_name = isset( $country_list[ $country_code ] ) ? $country_list[ $country_code ] : $country_code; return apply_filters( 'edd_get_country_name', $country_name, $country_code ); }