password_hint filter-hook . WP 4.1.0
Filters the text describing the site's password complexity policy.
Usage
add_filter( 'password_hint', 'filter_function_name_397' ); function filter_function_name_397( $hint ){ // filter... return $hint; }
- $hint(string)
- The password hint text.
Changelog
Since 4.1.0 | Introduced. |
Where the hook is called
password_hint
wp-includes/user.php 2468
return apply_filters( 'password_hint', $hint );