admin管理员组

文章数量:1312889

I want to show some repeater fields on tag archive page. with this code I can display the simple text fields of acf:

$term = get_queried_object();
$meta = get_field('test', $term);

but when want to output the acf repeater have no success.

$term = get_queried_object();
if (have_rows('faq', $term)) :
    while (have_rows('faq', $term)) : the_row();
        echo get_sub_field('question');
        echo get_sub_field('answer');
    endwhile;
endif;

本文标签: taxonomyHow to display acf repeater in tag archive page