stephenharris / event-organiser-rest-api

Integration for Event Organiser with WP REST API.
2 stars 4 forks source link

get events only get 4 events #2

Open bayethiernodiop opened 7 years ago

bayethiernodiop commented 7 years ago

Hi i am using the plugin but when i call the endpoint /events i only get 4 events and in my web page i am having all the events Can someone help please

nexorianus commented 1 year ago

very late to the party... use page and per_page params in request. this is limited to 100 elements tho. so if you need more, you would need to call the request several times. example.com/wp/v2/events?page=1&per_page=100 example.com/wp/v2/events?page=2&per_page=100 and so on...

see https://developer.wordpress.org/rest-api/using-the-rest-api/pagination/