サムネサイズ

funcitons.php

---

// サムネサイズ
function display_image($field_name, $size = 'medium') {
$image = get_field($field_name);
if(!empty($image)) {
$url = $image['sizes'][$size]; // 画像URL
$width = $image['sizes'][$size . '-width']; //画像の横幅
$height = $image['sizes'][$size . '-height'];
echo '<img src="' . $url .'" width="'. $width .'" height="'. $height .'" />';
}
}

 

---

<?php display_image('picture', 'large'); ?>