Skip to content

Instantly share code, notes, and snippets.

@contempoinc
Last active July 21, 2016 16:48
Show Gist options
  • Save contempoinc/689d04e92bf85350d79b401d8677b43b to your computer and use it in GitHub Desktop.
Save contempoinc/689d04e92bf85350d79b401d8677b43b to your computer and use it in GitHub Desktop.
/*-----------------------------------------------------------------------------------*/
/* Property Type Icon */
/*-----------------------------------------------------------------------------------*/
function ct_property_type_icon() {
global $post;
if(ct_has_type('commercial')) {
// Changed to solid building icon instead of outline
echo '<span class="prop-type-icon"><i class="fa fa-building"></i></span>';
} elseif(ct_has_type('land')) {
echo '<span class="prop-type-icon"><i class="fa fa-tree"></i></span>';
} else {
echo '<span class="prop-type-icon"><i class="fa fa-home"></i></span>';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment