尝试使用以下代码来解决此问题:
首先,在您的主题/插件的functions.php文件中添加以下代码段:
function acf_load_posts_field_choices( $field ) {
$args = array(
'post_type' => 'post',
'orderby' => 'title',
'order' => 'ASC',
'posts_per_page'=> -1
);
$choices = array();
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$choices[get_the_ID()] = get_the_title();
endwhile;
$field['choices'] = $choices;
wp_reset_query();
return $field;
}
add_filter('acf/load_field/name=relationships', 'acf_load_posts_field_choices');
这会为您的ACF复制字段添加一个选项卡,可以选择一个或多个文章。
然后,在您的模板文件中添加以下代码:
这会确保您的循环添加每个重复器字段的文章或页面内容,并在您的网站上显示它们的标题和内容。