| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/winee/wp-content/themes/wineroad_OLD/ |
Upload File : |
<div class="page-features small-12 medium-4 large-3 columns">
<ul class="small-block-grid-2 medium-block-grid-1">
<?php
$rows = get_field('features', 'option');
$rand_rows = array();
$max_features = 3;
if(count($rows) > $max_features){
$rand_keys = array_rand($rows, $max_features);
foreach($rand_keys as $key){
array_push($rand_rows, $rows[$key]);
}
} else {
$rand_rows = $rows;
}
foreach($rand_rows as $row):
?>
<li>
<a href="<?php echo $row['link'] ?>">
<div class="image-text-wrapper">
<img src="<?php echo $row['feature_image']; ?>" />
<div class="hover-content-wrapper">
<h3 class="hover-title"><?php echo $row['hover_title'] ?></h3>
<?php echo $row['hover_text'] ?>
</div>
</div>
<span class="feature-title"><?php echo $row['title'] ?></span>
</a>
</li>
<?php
endforeach;
?>
</ul>
</div>