Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created February 20, 2025 19:55
Show Gist options
  • Save propertyhive/0bad39c81b6e98b9db8d3392cf7c288a to your computer and use it in GitHub Desktop.
Save propertyhive/0bad39c81b6e98b9db8d3392cf7c288a to your computer and use it in GitHub Desktop.
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