Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created August 10, 2016 16:59
Show Gist options
  • Save propertyhive/c1c4946d4c311e8f0a5b5eb7d23c1fef to your computer and use it in GitHub Desktop.
Save propertyhive/c1c4946d4c311e8f0a5b5eb7d23c1fef to your computer and use it in GitHub Desktop.
add_action( 'propertyhive_after_search_results_loop_item_title', 'jons_propertyhive_search_address', 7 );
add_action( 'propertyhive_after_search_results_loop_item_title', 'jons_propertyhive_search_bedrooms', 8 );
function jons_propertyhive_search_address() {
?>
<div class="address">
<?php echo $property->get_formatted_full_address(); ?>
</div>
<?php
}
function jons_propertyhive_search_bedrooms() {
?>
<div class="bedrooms">
<?php echo $property->bedrooms; ?>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment