Home / Admin / Custom Countries
Duplicate Snippet

Embed Snippet on Your Site

Custom Countries

Illustrates how to add a custom list of countries

<10
Code Preview
php
<?php
function pw_edd_custom_countries( $countries = array() ) {
	$countries = array(
		'US' => 'United States',
		'CA' => 'Canada'
	);
	return $countries;
}
add_filter( 'edd_countries', 'pw_edd_custom_countries' );

Comments

Add a Comment