Filter hook 'random_password'

in WP Core File wp-includes/pluggable.php at line 2655

Description

Filters the randomly-generated password.

Occurrences

Filename Line Number
wp-includes/pluggable.php 2655

Parameters

Type Name Description
string $password The generated password.
int $length The length of password to generate.
bool $special_chars Whether to include standard special characters.
bool $extra_special_chars Whether to include other special characters.

PHP Doc

/**
		 * Filters the randomly-generated password.
		 *
		 * @since 3.0.0
		 * @since 5.3.0 Added the `$length`, `$special_chars`, and `$extra_special_chars` parameters.
		 *
		 * @param string $password            The generated password.
		 * @param int    $length              The length of password to generate.
		 * @param bool   $special_chars       Whether to include standard special characters.
		 * @param bool   $extra_special_chars Whether to include other special characters.
		 */