WP_REST_Response::get_matched_handler()publicWP 4.4.0

Retrieves the handler that was used to generate the response.

Method of the class: WP_REST_Response{}

No Hooks.

Return

null|Array. The handler that was used to create the response.

Usage

$WP_REST_Response = new WP_REST_Response();
$WP_REST_Response->get_matched_handler();

Changelog

Since 4.4.0 Introduced.

WP_REST_Response::get_matched_handler() code WP 6.4.3

public function get_matched_handler() {
	return $this->matched_handler;
}