WP_Recovery_Mode_Key_Service::generate_recovery_mode_token()
Creates a recovery mode token.
Description Description
Return Return
(string) $token A random string to identify its associated key in storage.
Source Source
File: wp-includes/class-wp-recovery-mode-key-service.php
public function generate_recovery_mode_token() { return wp_generate_password( 22, false ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |