| Server IP : 217.160.0.251 / Your IP : 216.73.216.41 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u94981163 ( 8991765) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/15/d754908516/htdocs/wp-content/themes/est-project/templates/property/ |
Upload File : |
<?php
/**
* @var array $features_list
* @var string $features_list_title
*/
?>
<div class="es-features-list-wrap">
<span><?php echo $features_list_title; ?>:</span>
<ul>
<?php
foreach ( $features_list as $item ): ;?>
<?php $background_path = ES_PROJECT_DIR . 'assets/images/features/' . $item->taxonomy . '_' . $item->slug . '.png';
if ( file_exists( $background_path ) ) {
$background_url = ES_PROJECT_URL . 'assets/images/features/' . $item->taxonomy . '_' . $item->slug . '.png';
}
else {
$background_url = ES_PROJECT_URL . 'assets/images/features/es_feature.png';
}
?>
<li class="<?php echo $item->taxonomy; ?>">
<!--<div class="es_feature__item-background" style="background-image: url(<?php /*echo $background_url; */?>);"></div>-->
<div class="es_feature__item-background"> <img src="<?php echo $background_url; ?>"></div>
<div><?php echo $item->name; ?></div>
</li>
<?php
endforeach; ?>
</ul>
</div>