php 从嵌套组中的var获取ACF值

Posted

tags:

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


treatment_page_hero - group
  hero_content - group
     custom_title - text
     subtitle - text
     treatment - textarea
     
     
<p class="blurb-textarea">
    <?php

    if( have_rows('treatment_page_hero') ): while ( have_rows('treatment_page_hero') ) : the_row();
            if( have_rows('hero_content') ): while ( have_rows('hero_content') ) : the_row();
                the_sub_field('treatment');
            endwhile; endif;
    endwhile;  endif;
    ?>
</p>

以上是关于php 从嵌套组中的var获取ACF值的主要内容,如果未能解决你的问题,请参考以下文章

在functions.php中获取相关组的ACF字段值(通过Post Object)

从 Wordpress 中自定义帖子类型的类别中获取 ACF 文本字段值

php ACF从选项页面获取字段

Wordpress ACF 字段如何从自定义帖子类型中获取选项

php 从ACF图像字段获取SVG cde

如何使用linq从字典中获取嵌套键值对[重复]