WP_REST_Request::set_body( string $data )

In this article

Sets body content.

Parameters

$datastringrequired
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;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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