wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_get_password_hint › WordPress Function
Since4.1.0
Deprecatedn/a
› wp_get_password_hint ( No parameters )
Returns: |
|
Defined at: |
|
Codex: |
Gets the text suggesting how to create strong passwords.
Related Functions: wp_set_password, wp_generate_password, wp_check_password, wp_lostpassword_url, wp_hash_password
Source
function wp_get_password_hint() { $hint = __( 'Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! " ? $ % ^ & ).' ); /** * Filters the text describing the site's password complexity policy. * * @since 4.1.0 * * @param string $hint The password hint text. */ return apply_filters( 'password_hint', $hint ); }