Hello,
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.
Hello,
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.
Hello,
showposts doesn’t work ??
{
“orderby”:”date”,
“showposts”:”2″,
“order”:”ASC”
}
Thanks
Hello,
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”}]
}
Thanks.
Hello,
It’s perfect with new version 😉
Is it possible to hide the pagination, to use only next and prev?
Thanks.
Sorry i just saw where it is 😉
Thanks