WP_REST_Request::set_query_params( array $params )

Sets parameters from the query string.

Description

Typically, this is set from $_GET.

Parameters

$paramsarrayrequired
Parameter map of key to value.

Source

public function set_query_params( $params ) {
	$this->params['GET'] = $params;
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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