Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/4bbaf523f788f06ed0f16aec7f322d8d to your computer and use it in GitHub Desktop.
Save propertyhive/4bbaf523f788f06ed0f16aec7f322d8d to your computer and use it in GitHub Desktop.
add_action( "propertyhive_property_imported_gnomen_xml", 'import_new_home_custom_field', 10, 2 );
function import_new_home_custom_field($post_id, $property)
{
if ( isset($property->property_no) && strtolower((string)$property->new_home, 'preown') !== false )
{
update_post_meta( $post_id, '_new_home', 'Pre-owned Home' );
}
else
{
update_post_meta( $post_id, '_new_home', 'New Home' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment