WP_REST_Users_Controller::update_current_item()
Updates the current user.
Method of the class: WP_REST_Users_Controller{}
No Hooks.
Return
WP_REST_Response|WP_Error
. Response object on success, or WP_Error object on failure.
Usage
$WP_REST_Users_Controller = new WP_REST_Users_Controller(); $WP_REST_Users_Controller->update_current_item( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 4.7.0 | Introduced. |
WP_REST_Users_Controller::update_current_item() WP REST Users Controller::update current item code WP 6.1.1
public function update_current_item( $request ) { $request['id'] = get_current_user_id(); return $this->update_item( $request ); }