WP_REST_Request::offsetSet( string $offset, mixed $value )

Sets a parameter on the request.


Description Description


Parameters Parameters

$offset

(string) (Required) Parameter name.

$value

(mixed) (Required) Parameter value.


Top ↑

Source Source

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

	public function offsetSet( $offset, $value ) {
		$this->set_param( $offset, $value );
	}

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.