W3cubDocs

/WordPress

WP_REST_Controller::filter_response_by_context( array $data, string $context )

Filters a response based on the context defined in the schema.

Parameters

$data

(array) (Required) Response data to filter.

$context

(string) (Required) Context defined in the schema.

Return

(array) Filtered response.

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-controller.php

public function filter_response_by_context( $data, $context ) {

		$schema = $this->get_item_schema();

		return rest_filter_response_by_context( $data, $schema, $context );
	}

Changelog

Version Description
4.7.0 Introduced.

© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_rest_controller/filter_response_by_context