wp_get_password_hint

函数
wp_get_password_hint ( No parameters )
返回值
  • (string) The password hint text.
定义位置
相关方法
wp_set_passwordwp_generate_passwordwp_check_passwordwp_get_shortlinkwp_lostpassword_url
引入
4.1.0
弃用
-

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 );
}

常见问题

FAQs
查看更多 >