Two or more Repeaters at the same time with working pagination #230
Unanswered
kotkotan
asked this question in
Technical Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have blog page with 2 repeaters at the same time. I need different design for 1st post in separate section and different design for all other posts cards in another section.
One repeater shows 1 latest post
Second repeater shows all other posts, 5 per page with pagination.
Manual Query for First Repeater:
post_type=post&posts_per_page=1&no_found_rows=true
Manual Query for Second Repeater:
post_type=post&posts_per_page=5&offset=1
In this case pagination for second Repeater not working (when offset is enabled). If click 2 page or 3, 4... it shows the same posts again and again.
How to fix that? Thanks
Beta Was this translation helpful? Give feedback.
All reactions