
如何编辑本地电脑Hosts文件 – 在更新DNS之前预览站点
wp_get_password_hint ( No parameters )
wp_get_password_hint: 这个函数返回一个用户的密码提示: 当用户忘记了他们的密码,需要提醒时,它就会被使用。
获得建议如何创建强密码的文本。
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 ); }