password_hint

FILTER wp-includes\user.php (ligne 3032) github
Filters the text describing the site's password complexity policy.

Paramètres

Entrée :
$hint
Sortie :
@param string $hint The password hint text.

Utilisation

// Modifier la valeur avec le filtre 'password_hint'
add_filter('password_hint', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre($hint) {
    // Modifier la valeur
    return $hint;
}

Actualités

Chargement des actualités...