{ The updated application password details. @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 int|null $last_used The Unix timestamp of the GMT date the application password was last used. @type string|null $last_ip The IP address the application password was last used by.}
$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_usedint|null
The Unix timestamp of the GMT date the application password was last used.
$last_ipstring|null
The IP address the application password was last used by.
308* @type int$created Unix timestamp of when the password was created.309* @type int|null$last_used The Unix timestamp of the GMT date the application password was last used.310* @type string|null$last_ip The IP address the application password was last used by.311*}312* @param array$update The information to update.313*/314do_action('wp_update_application_password',$user_id,$item,$update);315316returntrue;317}318319returnnewWP_Error('application_password_not_found',__('Could not find an application password with that id.'));320}
History
Introduced in 5.6.0. Unchanged from 6.7.7 through 7.1.0.