This repository was archived by the owner on Sep 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 651
This repository was archived by the owner on Sep 24, 2018. It is now read-only.
Query params for collections #924
Copy link
Copy link
Closed
Labels
Milestone
Description
If you have a bug to report relating to querying for posts, terms, users, comments, etc., please open a new issue — this issue is intended to be a master reference.
This issue is a master issue representing work on query parameters in collections. Here's a table of the currently supported parameters:
+----------------+-------+-------+-------+----------+------------+-------+-------+
| param | posts | pages | media | comments | categories | tags | users |
+----------------+-------+-------+-------+----------+------------+-------+-------+
| after | x | x | x | x | | | |
| author | x | x | x | x | | | |
| author_email | | | | x | | | |
| author_exclude | x | x | x | x | | | |
| before | x | x | x | x | | | |
| context | x | x | x | x | x | x | x |
| exclude | x | x | x | x | x | x | x |
| filter | x | x | x | | | | |
| hide_empty | | | | | x | x | |
| include | x | x | x | x | x | x | x |
| karma | | | | x | | | |
| media_type | | | x | | | | |
| menu_order | | x | | | | | |
| mime_type | | | x | | | | |
| offset | x | x | x | x | | x | x |
| order | x | x | x | x | x | x | x |
| orderby | x | x | x | x | x | x | x |
| page | x | x | x | x | x | x | x |
| parent | | x | x | x | x | | |
| parent_exclude | | x | x | x | | | |
| per_page | x | x | x | x | x | x | x |
| post | | | | x | x | x | |
| search | x | x | x | x | x | x | x |
| slug | x | x | x | | x | x | x |
| status | x | x | x | x | | | |
| type | | | | x | | | |
+----------------+-------+-------+-------+----------+------------+-------+-------+
Related #605