Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 28, 2025 12:03
Show Gist options
  • Save propertyhive/057d9ae87b4c3dfa172199282572815b to your computer and use it in GitHub Desktop.
Save propertyhive/057d9ae87b4c3dfa172199282572815b to your computer and use it in GitHub Desktop.
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