Query WordPress (REST) posts by the order they app

2019-08-31 02:01发布

问题:

I am using the Post Types Order plugin to re-order posts on WP Admin.

Is there a way to fetch WP REST API by that order?

/wp-json/wp/v2/posts?orderby ??

WP Rest Api docs only shows order by: date, id, include, title, slug

回答1:

Just omit orderby from the query and it will do it:

/wp-json/wp/v2/posts?per_page=20&page=1