Created
October 15, 2025 15:28
-
-
Save propertyhive/5a0a0bd4bb51df71f720ecd6a1868206 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_before_search_results_loop_item_title', 'add_featured_flag', 15 ); | |
| function add_featured_flag() | |
| { | |
| global $property; | |
| if ( $property->featured == 'yes' ) | |
| { | |
| echo '<div class="flag flag-featured" style="position:absolute; text-transform:uppercase; font-size:13px; box-sizing:border-box; padding:7px 20px; top:0; left:97px; color:#FFF; background:#04301c !important;">Featured</div>'; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment