Last active
July 21, 2016 16:48
-
-
Save contempoinc/689d04e92bf85350d79b401d8677b43b 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
/*-----------------------------------------------------------------------------------*/ | |
/* 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