WP_REST_Request::get_json_params()publicWP 4.4.0

Retrieves the parameters from a JSON-formatted body.

Method of the class: WP_REST_Request{}

No Hooks.

Return

Array. Parameter map of key to value.

Usage

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->get_json_params();

Changelog

Since 4.4.0 Introduced.

WP_REST_Request::get_json_params() code WP 6.5.2

public function get_json_params() {
	// Ensure the parameters have been parsed out.
	$this->parse_json_params();

	return $this->params['JSON'];
}