10 lines
171 B
PHP
10 lines
171 B
PHP
|
<?php
|
||
|
global $property;
|
||
|
|
||
|
if ( ! $property->is_featured() ) {
|
||
|
return;
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<span class="label-featured label"><?php esc_html_e( 'Featured', 'opalestate-pro' ); ?></span>
|