Home › Forums › General Issues › Using relationship field to display repeater from a custom post type › Reply To: Using relationship field to display repeater from a custom post type
To show the accommodations (repeater) that is on the post type town when showing events you need to get the location fields and then supply the post ID to get the repeater from.
if (have_fields('your-repeater', $post_id)) {
while(have_rows('your-repeater', $post_id)) {
the_row();
get_sub_field(.... etc)
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.