Advanced custom fields

Plugins, avis
Documentation

Intégrer une image ACF :

if( get_field('image_produit') )
{
    $img = get_field('image_produit');
    echo '<img src="'.$img['url'].'" alt="'.$img['alt'].'" width="'.$img['width'].'" height="'.$img['height'].'" style="max-width:'.$img['width'].'px;max-height:'.$img['height'].'px;" />';
}