wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



rest_{$this->post_type}_query › Les Filtres WordPress

Depuis5.7.0
Dépréciéen/a
apply_filters( "rest_{$this->post_type}_query", $args, $request )
Paramètres: (2)
  • (array) $args Array of arguments for WP_Query.
    Requis: Oui
  • (WP_REST_Request) $request The REST API request.
    Requis: Oui
Défini(e) dans:
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 );