カテゴリー
wordpress

繰り返しカスタムフィールドの表示・取得

表示

if( have_rows('parent_field') ):
    while ( have_rows('parent_field') ) : the_row();
        $sub_value = get_sub_field('sub_field');
        // Do something...
    endwhile;
else :
    // no rows found
endif;

取得

$array = [];
while(the_repeater_field('フィールド名')){
  $temp['●●'] = get_sub_field('サブフィールド名');
  array_push($array, $temp);
}