1 回答
TA贡献2021条经验 获得超8个赞
您可以添加用于编辑这些字段的选项页面:
if (function_exists('acf_add_options_page')) {
acf_add_options_page(array(
'page_title' => 'Theme General Settings',
'menu_title' => 'Theme Settings',
'menu_slug' => 'theme-general-settings',
'capability' => 'edit_posts',
'redirect' => false
));
}
然后在此选项页面上显示此字段组。
至于显示值,您需要像这样添加第二个参数“option”:
<?php
if( have_rows('actiedagen', 'option') ):
while ( have_rows('actiedagen', 'option') ) : the_row();
the_sub_field('actiedagen_titel'); // no need to add option here
the_sub_field('actiedagen_datum');
the_sub_field('actiedagen_locatie');
endwhile;
else :
endif;
?>
- 1 回答
- 0 关注
- 95 浏览
添加回答
举报