Created
January 6, 2026 13:58
-
-
Save propertyhive/c41e9a4ebf973daddf70d5b1b364824d to your computer and use it in GitHub Desktop.
Add Egypt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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