Created
March 28, 2025 11:21
-
-
Save g-maclean/52f3c6dc16a7fea31baff23bcf324b52 to your computer and use it in GitHub Desktop.
PropertyHive - Kyero Import Virtual Tour
This file contains hidden or 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_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