Skip to content

Instantly share code, notes, and snippets.

@propertyhive
Created October 15, 2025 15:28
Show Gist options
  • Save propertyhive/5a0a0bd4bb51df71f720ecd6a1868206 to your computer and use it in GitHub Desktop.
Save propertyhive/5a0a0bd4bb51df71f720ecd6a1868206 to your computer and use it in GitHub Desktop.
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