目前,我有一个使用ACF插件定义的字段组,在我的页面的特定区域上显示:标题、图标和链接。我想让我的一个内容贡献者能够根据自己的需要,从两个不同的字段组中为页面的同一区域进行选择。这可能吗?如果是这样的话,我该怎么做呢?非常感谢。
<h2 class="icon" style="background:url(<?php the_field(\'top_left_icon\');?>) no-repeat left center;"><?php the_field(\'top_left_title\');?></h2>
<?php the_field(\'top_left_text\');?>
<?php if( (get_field(\'top_left_button_text\')) && (get_field(\'top_left_button_link\'))){?>
<a class="button" href="<?php the_field(\'top_left_button_link\'); ?>"><?php the_field(\'top_left_button_text\'); ?></a>
<?php } ?>
下面是在ACF插件管理端实现的屏幕抓图: