Fires when an application password is created.
Parameters
$user_id
int- The user ID.
$new_item
array- The details about the created password.
uuid
stringThe unique identifier for the application password.app_id
stringA UUID provided by the application to uniquely identify it.name
stringThe name of the application password.password
stringA one-way hash of the password.created
intUnix timestamp of when the password was created.last_used
nullNull.last_ip
nullNull.
$new_password
string- The generated application password in plain text.
$args
array- Arguments used to create the application password.
name
stringThe name of the application password.app_id
stringA UUID provided by the application to uniquely identify it.
Source
do_action( 'wp_create_application_password', $user_id, $new_item, $new_password, $args );
Changelog
Version | Description |
---|---|
5.6.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.