Fires when an application password is updated.
Parameters
$user_idint- The user ID.
$itemarray- The updated application password details.
uuidstringThe unique identifier for the application password.app_idstringA UUID provided by the application to uniquely identify it.namestringThe name of the application password.passwordstringA one-way hash of the password.createdintUnix timestamp of when the password was created.last_usedint|nullThe Unix timestamp of the GMT date the application password was last used.last_ipstring|nullThe IP address the application password was last used by.
$updatearray- The information to update.
Source
do_action( 'wp_update_application_password', $user_id, $item, $update );
Changelog
| Version | Description |
|---|---|
| 6.8.0 | The password is now hashed using wp_fast_hash() instead of phpass. Existing passwords may still be hashed using phpass. |
| 5.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.