Home › Forums › Front-end Issues › After upgrade post aggregator not working › Reply To: After upgrade post aggregator not working
Hi @mpayumo
Yes, it seems that the content is returned correctly. Next, could you please debug all key variables like $events
.
Also, could you please check if the repeater returns correct data like this:
echo "<pre>";
while ( $lulus->have_posts() ) : $lulus->the_post();
$dates = get_field('dates');
print_r($dates);
endwhile;
echo "</pre>";
If that doesn’t work, could you please try to set the post ID manually like this:
$dates = get_field('dates', 99);
Where ’99’ is the post ID.
Thanks 🙂
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.