Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save propertyhive/6af77083bbc216ea14fa225ebacd5f06 to your computer and use it in GitHub Desktop.
Save propertyhive/6af77083bbc216ea14fa225ebacd5f06 to your computer and use it in GitHub Desktop.
Add imported property ID to enquiries
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