Home › Forums › Add-ons › Repeater Field › Post Object Custom Field › Reply To: Post Object Custom Field
You could just post the code here as well within code tags tho 🙂
Try this:
<?php if( have_rows('cast') ): ?>
<?php while( have_rows('cast') ): the_row(); ?>
<?php $post_object = get_sub_field('actor'); ?>
<?php if( $post_object ): ?>
<?php
// override $post
$post = $post_object;
setup_postdata( $post );
?>
<h1><?php the_title(); ?></h1>
<?php wp_reset_postdata(); // IMPORTANT - reset the $post object so the rest of the page works correctly ?>
<?php endif; ?>
<?php endwhile; ?>
<?php 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.