WP_REST_Request::get_json_params

Advertisement

Summery Summery

Retrieves the parameters from a JSON-formatted body.

Syntax Syntax

WP_REST_Request::get_json_params()

Return Return

(array) Parameter map of key to value.

Source Source

File: wp-includes/rest-api/class-wp-rest-request.php

		// Enable lazy parsing.
		$this->parsed_json    = false;
		$this->parsed_body    = false;
		$this->params['JSON'] = null;
	}

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Advertisement

Leave a Reply