Warning: This function has been deprecated. Use wp_generate_password() instead.
generate_random_password() WordPress Function
The generate_random_password() function allows you to generate a random password for your WordPress account. This is useful if you want to create a strong password that is not easily guessed.
generate_random_password( int $len = 8 ) #
Generates a random password.
Description
See also
Parameters
- $len
(int)(Optional) The length of password to generate.
Default value: 8
Source
File: wp-includes/ms-deprecated.php
function generate_random_password( $len = 8 ) { _deprecated_function( __FUNCTION__, '3.0.0', 'wp_generate_password()' ); return wp_generate_password( $len ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Use wp_generate_password() |
MU (3.0.0) | Introduced. |