Forums
Home / Plugin: Post Loop Ajax / Limit post number
(@chriswp06)
7 years, 6 months ago
Hello,
Is it possible to limit the number posts ??
Thanks
(@aitakeuchi)
What can do is limited by WP_Query. can not limit the number of posts, maybe. need another way. e.g. limit to date.
Thanks.
showposts doesn’t work ??
{ “orderby”:”date”, “showposts”:”2″, “order”:”ASC” }
your code is working. “showposts” is same result when use “posts_per_page”
way is this?:
{ “post_type”: “post”, “posts_per_page”: 2, “orderby”:”date”, “order”:”DESC”, “date_query”:[{“after”: “3 month ago”}] }
7 years, 5 months ago
It’s perfect with new version ??
Is it possible to hide the pagination, to use only next and prev?
Sorry i just saw where it is ??