-
-
Notifications
You must be signed in to change notification settings - Fork 134
Open
Labels
Description
Hello!
According to the official docs:
https://developer.wordpress.org/rest-api/using-the-rest-api/pagination/
"To determine how many pages of data are available, the API returns two header fields with every paginated response:
X-WP-Total: the total number of records in the collection
X-WP-TotalPages: the total number of pages encompassing all available records"
I query posts using await client.Posts.Query(query), with 'Page' and 'PerPage' parameters set, but this method only returns posts. Is there a way to get total posts count without actually loading all of them with client.Posts.GetAll()?
Reactions are currently unavailable