Opened 7 years ago
Closed 7 years ago
#43184 closed enhancement (worksforme)
WP REST API: Filter page / post lists based on permalink
Reported by: | miztroh | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.7 |
Component: | REST API | Keywords: | |
Focuses: | Cc: |
Description
With the REST API, is it possible to query for pages / posts and filter by permalink? Something along the lines of /wp-json/wp/v2/posts?filter[permalink]=/2015/11/29/hello-world/.
See the previous discussion at https://github.com/WP-API/WP-API/issues/1776.
I'm reposting this here because the repo says the following:
"The WP REST API has been merged into WordPress core. Please do not create issues or send pull requests. Submit support requests to the forums or patches to Trac (see README below for links)."
I think this could be a really great feature and I don't want the request to get lost in a sea of Github issues that no one is checking.
Thank you!
Change History (1)
Note: See
TracTickets for help on using
tickets.
Yep! There's a
slug
parameter that you can use. It doesn't accept the full permalink, just the slug of the post which in your example ishello-world
.Docs here: https://developer.wordpress.org/rest-api/reference/posts/