WP_REST_Request::offsetUnset( string $offset )
Removes a parameter from the request.
Description Description
Parameters Parameters
- $offset
-
(string) (Required) Parameter name.
Source Source
File: wp-includes/rest-api/class-wp-rest-request.php
public function offsetUnset( $offset ) { $order = $this->get_parameter_order(); // Remove the offset from every group. foreach ( $order as $type ) { unset( $this->params[ $type ][ $offset ] ); } }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |