Created
March 24, 2025 09:01
-
-
Save propertyhive/15f1d600a9623b908dc55fd766f7dce7 to your computer and use it in GitHub Desktop.
This file contains 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_action( "houzez_property_feed_property_imported_resales_online_api", 'import_orientation', 10, 4 ); | |
function import_orientation( $post_id, $property, $import_id, $instance_id ) | |
{ | |
if (isset($property['PropertyFeatures']['Category'])) { | |
foreach ($property['PropertyFeatures']['Category'] as $feature) { | |
if (isset($feature['Type']) && $feature['Type'] === 'Orientation') { | |
if (!empty($feature['Value'][0])) { | |
update_post_meta($post_id, 'fave_orientation', $feature['Value'][0]); // assuming the meta key 'fave_orientation' here. Would need login access to confirm this if it doesn't work | |
} | |
break; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment