Bonbon
Content
FAQ
Landing pages sections
Link family
Link product
Listing HowTo
Menu footer
Menu header
News
Page FAQ
Produits
Resellers
Sections
Wording

News

		
<?php
$news_image = get_field('news_image');
$news_description_listing = get_field('news_description_listing');
?>
<?php if ($news_image){
$image = '';
$image = $news_image;
if( !empty($image) ){
$size = 'thumbnail';
$thumb = '';
$width = '';
$height = '';
$thumb = $image['sizes'][$size];
$width = $image['sizes'][$size . '-width'];
$height = $image['sizes'][$size . '-height'];
?>
<img class='feature-img' alt='' width='<?php echo $width; ?>' height='<?php echo $height; ?>' src='<?php echo $thumb; ?>'/>
<?php
}
}
?>
<?php if ($news_description_listing){ ?>
<?php echo $news_description_listing; ?>
<?php } ?>