функция
since 4.1.0
wp_get_password_hint()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
wp_get_password_hint(): string
Описание
Возвращает текст с рекомендациями по созданию надёжных паролей.
Возвращаемое значение
string
Исходный код
wp-includes/user.php:3060
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 );
}
История изменений
| Версия | Описание |
|---|---|
| 4.1.0 | Introduced. |

