{ The details about the created password. @type string $uuid The unique identifier for the application password. @type string $app_id A UUID provided by the application to uniquely identify it. @type string $name The name of the application password. @type string $password A one-way hash of the password. @type int $created Unix timestamp of when the password was created. @type null $last_used Null. @type null $last_ip Null.}
$uuidstring
The unique identifier for the application password.
$app_idstring
A UUID provided by the application to uniquely identify it.
$namestring
The name of the application password.
$passwordstring
A one-way hash of the password.
$createdint
Unix timestamp of when the password was created.
$last_usednull
Null.
$last_ipnull
Null.
$new_passwordstring
The generated application password in plain text.
$argsarray
{ Arguments used to create the application password. @type string $name The name of the application password. @type string $app_id A UUID provided by the application to uniquely identify it.}
$namestring
The name of the application password.
$app_idstring
A UUID provided by the application to uniquely identify it.
144* Arguments used to create the application password.145*146* @type string$name The name of the application password.147* @type string$app_idAUUID provided by the application to uniquely identify it.148*}149*/150do_action('wp_create_application_password',$user_id,$new_item,$new_password,$args);151152returnarray($new_password,$new_item);153}154155/**156* Gets a user's application passwords.
History
Introduced in 5.6.0. Unchanged from 6.7.7 through 7.1.0.