Created
February 20, 2025 19:55
-
-
Save propertyhive/0bad39c81b6e98b9db8d3392cf7c288a to your computer and use it in GitHub Desktop.
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
function ep_propertyhive_enquiry_form_shortcode() | |
{ | |
global $post; | |
ob_start(); | |
// Get Property Hive post ID so we can use that as post ID instead of the Residence post ID | |
$hive_post_id = get_post_meta( $post->ID, '_propertyhive_property_id', TRUE ); | |
propertyhive_enquiry_form($hive_post_id); | |
return ob_get_clean(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment