ACF: Get Post Object data within a Repeater
I absolutely love Advanced Custom Fields. It’s part of the reason I love using WordPress so much. It makes things very easy for clients, and is a breeze to develop.
Every now and again I struggle to with grabbing and displaying desired data. A recently project required extracting data from a Post Object, within a Repeater. I struggled for at least an hour with tips from Stack Overflow as well as ACF forums without much luck.
Eventually I turned back to the original Post Object documentation for the answer. Basically, you’ll want to grab the Post Object data, then wrap the whole thing in your repeater code.
Here’s how I did it, using Flexslider. My repeater field is slides
and the Post Object field is featured_projects
:
<section class="slider">
<?php if( have_rows('slides') ): ?>
<div id="slider" class="flexslider">
<ul class="slides">
<?php while ( have_rows('slides') ) : the_row(); ?>
<li>
<?php $post_object = get_sub_field('featured_projects'); ?>
<?php if( $post_object ): ?>
<?php $post = $post_object; setup_postdata( $post ); ?>
<a href="<?php the_permalink(); ?>"><img src="<?php the_field('featured_image'); ?>" alt="<?php the_title(); ?>" /></a>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
</li>
<?php endwhile; ?>
</ul>
</div>
<?php endif; ?>
</section>
Thank you!!!
My pleasure. I come back to this one from time to time. Today included.
Bryan,
Thanks. Just curious to see some live pages with advance layouts you\’ve made using acf 🙂
Thanks for the link from your post Aksam. I\’ve been using ACF on nearly every project for a couple of years now. We tend not to get too complex – I never used the Flexible Content field for example. But it\’s times like this project posted here that minor complex items come up.
Thanks. I didn\’t know about Flexible content field. Looks like its a page builder like plugin. good to know options like these exist. You never know when you will need them.
I came across this repeater field issue when i was developing the custom post for this page design
http://colombotraders.com/demo/infinity/draft2/tour-details-page.html
What do you think about this design? I\’ve not developed a post type this advance before, so I\’m wondering how it will work in a live environment.
So far, I have already developed the custom post page except for the slider. It\’s working nicely on my local wamp server. The custom post type has about 10 custom fields including a textarea to save google my map code, another to save slider code, a post object field, few other normal fields and 3 repeater fields each with several sub fields.
Looks like a fun layout to build. Custom post types and custom taxonomies!
Thank you very much!! Worked perfect. 🙂
No problem, glad you got it working 🙂
might want to close your #slider div?
Whoops, yep definitely @jas, thanks.
Hello,
i have post object called project_for_apartment. Then i have repeater called facility_fac. Inside repetear i have subfield called feature_value. I cant manage for days to extract those values on my custom template.
Did you get this sorted out Steve? Go ahead and post your code and we\’ll see if we can sort it out.
Years later, but still saving the day. Thank you!
I’m glad to know this still works and you found it useful Douglas!
Hey thanks for the tip! Unfortunately I’m only getting one of my repeater values printed. Narrowed it down to the while loop failing after the first post prints. Any ideas why that may be?
If I kill the and just enter random characters they will print the number of times that the while loop executes. However, with the post object assignment in there it will only loop once.
Hi Andrew. If you could post your code somewhere I might be able to troubleshoot.
YES! This was perfect for what i needed! thank you very much!