WP_REST_Application_Passwords_Controller::delete_items()
Deletes all application passwords for a user.
Method of the class: WP_REST_Application_Passwords_Controller{}
No Hooks.
Return
WP_REST_Response|WP_Error
. Response object on success, or WP_Error object on failure.
Usage
$WP_REST_Application_Passwords_Controller = new WP_REST_Application_Passwords_Controller(); $WP_REST_Application_Passwords_Controller->delete_items( $request );
- $request(WP_REST_Request) (required)
- Full details about the request.
Changelog
Since 5.6.0 | Introduced. |
WP_REST_Application_Passwords_Controller::delete_items() WP REST Application Passwords Controller::delete items code WP 6.8
public function delete_items( $request ) { $user = $this->get_user( $request ); if ( is_wp_error( $user ) ) { return $user; } $deleted = WP_Application_Passwords::delete_all_application_passwords( $user->ID ); if ( is_wp_error( $deleted ) ) { return $deleted; } return new WP_REST_Response( array( 'deleted' => true, 'count' => $deleted, ) ); }