Created
February 28, 2025 12:03
-
-
Save propertyhive/057d9ae87b4c3dfa172199282572815b 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_blm", "import_blm_custom_fields", 10, 2 ); | |
function import_blm_custom_fields($post_id, $property) | |
{ | |
// Assuming CUSTOM_FIELD_OTHER_LINK_00 is always a flipbook | |
if ( isset($property['CUSTOM_FIELD_OTHER_LINK_00']) && $property['CUSTOM_FIELD_OTHER_LINK_00'] != '' ) | |
{ | |
update_post_meta( $post_id, '_flipbook_url', $property['CUSTOM_FIELD_OTHER_LINK_00'] ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment