Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/15f1d600a9623b908dc55fd766f7dce7 to your computer and use it in GitHub Desktop.
Save propertyhive/15f1d600a9623b908dc55fd766f7dce7 to your computer and use it in GitHub Desktop.
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