php ACF灵活内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php ACF灵活内容相关的知识,希望对你有一定的参考价值。
<?php
$field_array = array(
'hero_bg_image',
'hero_main',
'hero_sub'
);
foreach ($field_array as $custom_field) {
$$custom_field = get_sub_field($custom_field);
}
<?php
// OPTION #1:
if( have_rows( 'tiers' ) ):
while ( have_rows( 'tiers' ) ) : the_row();
$section_name = get_row_layout();
$template_name = str_replace("_", "-", $section_name);
include("modules/{$template_name}/{$template_name}.php");
endwhile;
endif;
?>
以上是关于php ACF灵活内容的主要内容,如果未能解决你的问题,请参考以下文章
php ACF灵活的内容
php Acf Pro&Sage 9 - 灵活的内容块
php ACF灵活布局字段
输出表中的 ACF 灵活内容字段(表头不通过循环重复)
json ACF简单灵活内容页面生成器
如何隐藏 ACF 中灵活内容框中的复选框但不隐藏其他复选框