Created
July 29, 2026 20:37
-
-
Save g-maclean/3e7c7db879d079d1bb082e204630befa to your computer and use it in GitHub Desktop.
Property Hive - Kyero Export - Change Type Options
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('ph_kyero_feed_type_mapping_options', 'my_kyero_type_mapping', 10, 2); | |
| function my_kyero_type_mapping($mapping, $custom_field) { | |
| // Add a new property type | |
| $mapping['bungalow'] = 'Bungalow'; | |
| // Change an existing mapping | |
| $mapping['villa'] = 'Luxury Villa'; | |
| return $mapping; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment