ACFの繰り返しフィールドから一つ目の画像を抽出
'20.07.17<?php $rows = get_field('【繰り返しフィールド名】' ); // 全フィールドを取得 $first_row = $rows[0]; // 1つ目だけ格納 $first_row_image = $first_row['【フィールド名】' ]; // get the sub field value $image = wp_get_attachment_image_src( $first_row_image, '【サイズ】' ); echo '<img src="'.$image[0].'">'."\n"; ?>
(View2246)