WP_REST_Request::set_body( string   $data )

Sets body content.

Parameters

$data string required
Binary data from the request body.

Source

public function set_body( $data ) {
	$this->body = $data;

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

Changuelog

Versionen Description
4.4.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.