Created
March 27, 2025 12:00
-
-
Save propertyhive/6af77083bbc216ea14fa225ebacd5f06 to your computer and use it in GitHub Desktop.
Add imported property ID to enquiries
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_filter( 'propertyhive_property_enquiry_property_output', 'add_rex_property_id_to_enquiries', 10, 2 ); | |
function add_rex_property_id_to_enquiries( $output, $property_id ) | |
{ | |
$property = new PH_Property($property_id); | |
$output = $property->get_formatted_full_address() . "\n" . | |
$property->get_formatted_price() . "\n" . | |
get_permalink( (int)$property_id ) . "\n" . | |
'Property ID: ' . $property->imported_id; | |
return $output; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment