-
-
Save propertyhive/3b8b62d8b21f87fb2243b0f53a9de28b to your computer and use it in GitHub Desktop.
PropertyHive - Reapit force use standard ID instead of alternateID
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_reapit_foundations_json", 'force_main_id_import', 10, 2 ); | |
function force_main_id_import( $post_id, $property ) | |
{ | |
if ( isset($property['id']) && !empty($property['id']) ) | |
{ | |
update_post_meta( $post_id, '_reference_number', $property['id'] ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment