I am trying to grab posts and order them by date, in a descending order.
I am talking about this API: https://github.com/WP-API/WP-API
I tried:
http://url.com/json/wp-json/wp/v2/posts?filter[order]=DESC
http://url.com/json/wp-json/wp/v2/posts?order=desc
Neither of them work.
But this, for example, works fine:
http://url.com/json/wp-json/wp/v2/posts?filter[cat]=3
Any idea?
http://demo.wp-api.org/wp-json/wp/v2/posts?order=asc
andhttp://demo.wp-api.org/wp-json/wp/v2/posts?order=desc
- seems to be working fine. According to their docs, it should work: v2.wp-api.org/reference/posts. – Electrotonus