Home › Forums › Add-ons › Repeater Field › query and return rows from repeater › Reply To: query and return rows from repeater
This
$custom_post->product_variations
will return nothing. The repeater field in not a property of a WP_Post object.
To get an array for the repeater you would need to do
$value = get_field('product_variations', $custom_post->ID);
So if I understand what you want to do (which I’m not sure I do) then the line should be
if ((get_field('product_variations', $custom_post->ID)) $options[] = ['text' => get_field('product_variations', $custom_post->ID), 'value' => 'yes-array'];
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.