Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created January 6, 2026 13:58
Show Gist options
  • Select an option

  • Save propertyhive/c41e9a4ebf973daddf70d5b1b364824d to your computer and use it in GitHub Desktop.

Select an option

Save propertyhive/c41e9a4ebf973daddf70d5b1b364824d to your computer and use it in GitHub Desktop.
Add Egypt
add_filter( 'propertyhive_countries', 'add_eg' );
function add_eg($countries)
{
$countries['EG'] = array(
'name' => 'Egypt',
'currency_code' => 'EGP',
'currency_symbol' => 'E£',
'currency_prefix' => true
);
return $countries;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment