WP_REST_Request::set_body_params

Advertisement

Summery Summery

Sets parameters from the body.

Syntax Syntax

WP_REST_Request::set_body_params( array $params )

Description Description

Typically, this is set from $_POST.

Parameters Parameters

$params

(Required) Parameter map of key to value.

Source Source

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

	 */
	public function get_body_params() {
		return $this->params['POST'];

Advertisement

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.

Advertisement

Leave a Reply