WPIntell

Source evidence

The “Repeater” does not work

Advanced Gallery & Repeater Fields for ACF · support · 2026-06-01T02:21:00+00:00

mixedsentiment
mediumseverity
0.78relevance
2replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

5 / 31 rows with source links

16.1% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

26 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
shinchaya resolved
In WordPress version 7.0, the “Repeater” get_sub_field method isn’t outputting anything. Hi @shinchaya We were in the middle of testing the plugin for WordPress 7.0 because I am not sure if you saw it the plugin compatibility was only with 6.8 when you tested on 7.0 but now we have updated please try and let us know since we value your feedback. To reiterate, I am currently facing this issue with WordPress 7.0. I am using the sample code you provided exactly as is, but it doesn’t work. <?php // Standard ACF repeater usage if (have_rows('team_members')) : while (have_rows('team_members')) : the_row(); $name = get_sub_field('name'); $photo = get_sub_field('photo'); echo '<div class="member">'; echo '<h3>' . esc_html($name) . '</h3>'; if ($photo) { echo wp_get_attachment_image($photo, 'medium'); } echo '</div>'; endwhile; endif; ?> The values ​​entered in the following code were also correct. What am I doing wrong? <?php global $post; echo '<pre>Post ID: ' . get_the_ID() . '</pre>'; echo '<pre>team_members raw: '; var_dump(get_field('team_members')); echo '</pre>'; ?> This reply was modified 1 day, 2 hours ago by shinchaya .

Comments

2 shown
UX Design Experts 2026-06-04T22:49:00+00:00

Hi @shinchaya We were in the middle of testing the plugin for WordPress 7.0 because I am not sure if you saw it the plugin compatibility was only with 6.8 when you tested on 7.0 but now we have updated please try and let us know since we value your feedback.

shinchaya 2026-06-05T08:24:00+00:00

To reiterate, I am currently facing this issue with WordPress 7.0. I am using the sample code you provided exactly as is, but it doesn’t work. <?php // Standard ACF repeater usage if (have_rows('team_members')) : while (have_rows('team_members')) : the_row(); $name = get_sub_field('name'); $photo = get_sub_field('photo'); echo '<div class="member">'; echo '<h3>' . esc_html($name) . '</h3>'; if ($photo) { echo wp_get_attachment_image($photo, 'medium'); } echo '</div>'; endwhile; endif; ?> The values ​​entered in the following code were also correct. What am I doing wrong? <?php global $post; echo '<pre>Post ID: ' . get_the_ID() . '</pre>'; echo '<pre>team_members raw: '; var_dump(get_field('team_members')); echo '</pre>'; ?> This reply was modified 1 day, 2 hours ago by shinchaya .