ACF

ACFでよく使うやつだけメモ

  • 2019.08.22

ACFの値の取得重要なやつだけ <?php // 通常 $title = get_field('title'); // 繰り返しフィールド $arr = []; if (have_rows('cats_info')) { while (have_rows('cats_info')) { the_row(); $arr[] = get_sub_field('name'); } } // グルー […]