wpseek.com
A WordPress-centric search engine for devs and theme authors



rest_{$this->post_type}_query › WordPress Filter Hooks

Since5.7.0
Deprecatedn/a
apply_filters( "rest_{$this->post_type}_query", $args, $request )
Parameters: (2)
  • () args Array of arguments for WP_Query.
    Required: Yes
  • () request The REST API request.
    Required: Yes
Defined at:
Codex:

Filters WP_Query arguments when querying posts via the REST API.

The dynamic portion of the hook name, `$this->post_type`, refers to the post type slug. Possible hook names include: - `rest_post_query` - `rest_page_query` - `rest_attachment_query` Enables adding extra arguments or setting defaults for a post collection request.




Source

$args       = apply_filters( "rest_{$this->post_type}_query", $args, $request );