WP_REST_Request::set_body( string $data )

Sets body content.


Description Description


Parameters Parameters

$data

(string) (Required) Binary data from the request body.


Top ↑

Source Source

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

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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