Query WordPress (REST) posts by the order they appear on the admin

假装没事ソ 提交于 2020-01-26 00:44:49

问题


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


来源:https://stackoverflow.com/questions/38100699/query-wordpress-rest-posts-by-the-order-they-appear-on-the-admin

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!