Advanced Custom Fields(ACF)画像をwidthとheightを入れて表示したい。
<?php // ACFカスタムフィールドから画像のURLを取得 $image_url = get_field('フィールド名', 投稿ID); // 画像のIDを取得 $image_id = attachment_url_to_postid($image_url); // 画像の情報を取得 (配列で返される) $image_info = wp_get_attachment_image_src($image_id, 'full'); // 'full'はフルサイズの画像情報を取得する指定です。 // widthとheightを取得 $width = $image_info[1]; $height = $image_info[2]; ?> <!-- HTMLとして出力 --> <img src="<?php echo esc_url($image_url); ?>" width="<?php echo esc_attr($width); ?>" height="<?php echo esc_attr($height); ?>" alt=""/>