ACF で wp_get_attachment_image_src
◯functions.php
// サムネイル カスタムサイズ
add_theme_support('post-thumbnails');
if ( function_exists( 'add_image_size' ) ) {
add_image_size('custom', 1200, 800, false);
}
◯テンプレート側
<?php
$image_id = get_field('image_id'); // カスタムフィールド 画像ID
$size = 'hero'; // カスタムサイズ
$image = wp_get_attachment_image_src( $image_id, $size); // 'custom'サイズの画像情報取得
$image_url = $image[0];
echo $image_url;
?>