Blog article
Emploi
Entreprise
Footer
General wording
Header
Presse
Ressources
Sections
Wording Emploi

Entreprise

		
<?php
$entreprise_image = get_field('entreprise_image');
$a_propos = get_field('a_propos');
?>
<?php if ($entreprise_image){
$image = '';
$image = $entreprise_image;
if( !empty($image) ){
$size = 'thumbnail';
$thumb = '';
$width = '';
$height = '';
$thumb = $image['sizes'][$size];
$width = $image['sizes'][$size . '-width'];
$height = $image['sizes'][$size . '-height'];
$alt_text = get_post_meta($image['ID'] , '_wp_attachment_image_alt', true);
?>
<img class='' alt='<?php echo $alt_text; ?>' width='<?php echo $width; ?>' height='<?php echo $height; ?>' src='<?php echo $thumb; ?>'/>
<?php
}
}
?>
<?php if ($a_propos){ ?>
<?php echo $a_propos; ?>
<?php } ?>