Home › Forums › ACF PRO › Post Object inside Repeater on a Taxonomy template returns first instance only › Reply To: Post Object inside Repeater on a Taxonomy template returns first instance only
I agree with Nathan…
I would use it differently. I would do something like this I think.
$term = get_queried_object();
$var = get_field('field_name', $term);
Then loop through $var.
if ( count( $var ) > 0 ) ) {
$manager_name = get_sub_field('service_manager_name');
if ( $manager_name ) :
// do stuff
endif;
}
Note this is from the top of my head, so untested.
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.