Home › Forums › General Issues › Get Label in Repeater Field › Reply To: Get Label in Repeater Field
Hi @realph
Any sub field function such as ‘get_sub_field_object’ needs to be used WITHIN the loop, not outside the loop.
Your code should be changed to this:
<?php if( have_rows('blend') ): ?>
<ul>
<?php while( have_rows('blend') ): the_row();
$select = get_sub_field_object('mix');
$value = get_sub_field('mix');
$myvariable = $select['choices'][ $value ];
?>
<li>
<p><?php echo $myvariable; ?></p>
</li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
I notices quite a few mistakes with your parameters such as ‘blend’ in the get_sub_field_object function. Blend is your repeater field, not your select field.
Hopefully you can read over and understand the code I have posted.
Thanks
E
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
π» The next ACF Chat Fridays features a live demo of one of our most highly-requested features: registering CPTs and custom taxonomies directly in ACF. Donβt miss it!
— Advanced Custom Fields (@wp_acf) February 27, 2023
π Friday 3rd March 3pm UTC
π Register here - https://t.co/3UtvQbDwNm pic.twitter.com/j4r4ouQtz9
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.