wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_get_password_hint › WordPress Function

Since4.1.0
已弃用n/a
wp_get_password_hint ( 没有参数 )
返回:
  • (string) The password hint text.
定义在:
文档:

Gets the text suggesting how to create strong passwords.



源码

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