Created
March 25, 2025 17:52
-
-
Save propertyhive/4bbaf523f788f06ed0f16aec7f322d8d 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( "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