php ACF - 中继器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php ACF - 中继器相关的知识,希望对你有一定的参考价值。

<?php

// check if the repeater field has rows of data
if( have_rows('repeater_field_name') ):

 	// loop through the rows of data
    while ( have_rows('repeater_field_name') ) : the_row();

        // display a sub field value
        the_sub_field('sub_field_name');

    endwhile;

else :

    // no rows found

endif;

?>

以上是关于php ACF - 中继器的主要内容,如果未能解决你的问题,请参考以下文章

php ACF中继器

php ACF中继器场分页

php ACF中继器场分页

php ACF中继器阵列片

php 将重力表单列表保存到ACF中继器

表中的 ACF 中继器字段 - 在 PHP 模板中