I use a paginated list of all the website's posts in the homepage.
I now build the website and i only have some test posts.
What will hapen when i will have hunderds of posts ?
Am i able to limit the number of results i get in a paginated list to ... lets say 100 results ?
In a paginated View or WordPress Archive, you can choose how many items to display for the entire output, or for each page.
So, for example, you can output the first 3 posts of all posts available, paginated by one, or all posts, paginated by 3, or some posts, paginated by any number lower than the total of posts (so to show the pagination).
This is elaborated here:
https://toolset.com/documentation/beyond-the-basics/paginate-lists-of-content/
https://toolset.com/documentation/user-guides/views-pagination/
Is this what you are looking for?
My issue is resolved now. Thank you!