📜  acf 获取子字段 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:24.093000             🧑  作者: Mango

代码示例1
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;