You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 24, 2018. It is now read-only.
Currently cross calling get_item etc is laborious and you need to know the route etc. Typically, a Request object does't need all that information, as the callback just wants to the arguments. For example, rather than internally creating a WP_REST_Request for /taxonomy/post_tag/terms/123, it would be nicer to just do new WP_REST_Request( array( 'taxonomy' => 'post_tag', 'id' => 123 ) ) or something.