WordPress完全关闭密码强度检测的方法(非插件)
2022-06-19
WordPress自带一套密码强度检测,非常友好。不过,有时候可能用不到。推荐一种完全关闭密码强度检测的方法。
add_action('login_enqueue_scripts', function(){
wp_dequeue_script('user-profile');
wp_dequeue_script('password-strength-meter');
wp_deregister_script('user-profile');
$suffix = SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_script( 'user-profile', "/wp-admin/js/user-profile$suffix.js", array( 'jquery', 'wp-util' ), false, 1 );
});
在主题文件functions.php中合适位置添加即可。
参考资料
https://www.gomahamaya.com/disable-password-strength-meter-wordpress/#Without-any-plugin
(版权归cpury.com所有,转载请注明出处。)