Why doesn't the WordPress REST API return draft posts when I use status=draft?
`status=draft` is a valid WordPress REST API filter, but drafts aren't public results. Make the request as an authenticated user who can actually edit those posts, ideally with `context=edit`: `/wp-json/wp/v2/posts?status=draft&context=edit`. For a remote scri…
0 helpful votes