Created
August 10, 2016 16:59
-
-
Save propertyhive/c1c4946d4c311e8f0a5b5eb7d23c1fef to your computer and use it in GitHub Desktop.
This file contains hidden or 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_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