I’m showing a specific news article, and all the images connected to that news via an ACF Relationship field. The images are in a separate CPT called images.
The loops correctly show 5 images, but the pagination simply says Page 1 of 1
. Is there any way to tell the pagination tag which loop it’s meant to work on?
<Loop type=news field=name field_value=lost-dog>
<Field title />
<Loop acf_relationship="news_image" paged=2>
<Field image />
</Loop>
<PaginateButtons />
<PaginateFields>
Page <Field current_page /> of <Field total_pages />
</PaginateFields>
</Loop>