Skip to content

Instantly share code, notes, and snippets.

@g-maclean
Created March 28, 2025 11:21
Show Gist options
  • Save g-maclean/52f3c6dc16a7fea31baff23bcf324b52 to your computer and use it in GitHub Desktop.
Save g-maclean/52f3c6dc16a7fea31baff23bcf324b52 to your computer and use it in GitHub Desktop.
PropertyHive - Kyero Import Virtual Tour
add_action( "propertyhive_property_imported_kyero_xml", 'import_virtual_tour_kyero', 10, 2 );
function import_virtual_tour_kyero( $post_id, $property )
{
if ( isset($property->virtual_tour_url) && !empty($property->virtual_tour_url) )
{
update_post_meta( $post_id, '_virtual_tour_0', (string)$property->virtual_tour_url );
update_post_meta( $post_id, '_virtual_tour_label_0', __( 'Virtual Tour', 'propertyhive' ));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment