Home › Forums › Add-ons › Repeater Field › How to access user data inside a repeater loop › Reply To: How to access user data inside a repeater loop
Okay, never mind. I figured it out. Here is my working code in case anyone has a similar problem.
<?php
if( have_rows('episode_staff') ):
while ( have_rows('episode_staff') ) : the_row();
$user_id = get_sub_field('episode_staff_member')[ID];
?>
<div class="masthead-single">
<h4 class="masthead-name"><?php echo get_sub_field('episode_staff_member')['user_firstname'] ?> <?php echo get_sub_field('episode_staff_member')['user_lastname'] ?></h4>
<ul>
<li><?php echo get_sub_field('episode_staff_member')['user_email'] ?></li>
<li><?php echo get_field('twitter_username', 'user_'. $user_id) ?></li>
</ul>
</div>
<?php endwhile;
endif; ?>
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!
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 Privacy Policy. If you continue to use this site, you consent to our use of cookies.