WP_REST_Request::set_url_params()
Sets parameters from the route.
Typically, this is set after parsing the URL.
Method of the class: WP_REST_Request{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_REST_Request = new WP_REST_Request(); $WP_REST_Request->set_url_params( $params );
- $params(array) (required)
- Parameter map of key to value.
Changelog
Since 4.4.0 | Introduced. |
WP_REST_Request::set_url_params() WP REST Request::set url params code WP 6.6.2
public function set_url_params( $params ) { $this->params['URL'] = $params; }