flutter_wordpress icon indicating copy to clipboard operation
flutter_wordpress copied to clipboard

No way to get page count of posts when paginating

Open alanv73 opened this issue 4 years ago • 0 comments

If I get posts by the page:

posts = widget.wordPress.fetchPosts(
     postParams: wp.ParamsPostList(
          perPage: postsPerPage,
          pageNum: currentPage,
     ),
     fetchAuthor: true,
     fetchFeaturedMedia: true,
);

There is no way to determine when I am on the last page of posts (or pages).

alanv73 avatar Oct 28 '20 20:10 alanv73