Disable password limitations

时间:2018-11-17 作者:zaf y

我在我的Wordpress网站上有一个“learnpress”插件,它使用默认的注册Wordpress设置,但我想删除密码的所有限制,包括长度(12个字符),添加数字,我还想能够用其他语言设置密码。

我在函数中尝试了此代码。php,但它没有工作!有什么想法吗?

function wc_remove_password_strength() {
if ( wp_script_is( \'wc-password-strength-meter\', \'enqueued\' ) ) {
    wp_dequeue_script( \'wc-password-strength-meter\' );
       }
  }

add_action( \'wp_print_scripts\', \'wc_remove_password_strength\', 100 );

1 个回复
SO网友:vikrant zilpe

if you use wocommerce please try this code to your current theme functions.php

添加\\u操作(“wp\\u enqueue\\u scripts”、“misha\\u deactivate\\u pass\\u strength\\u meter”,10);

功能misha\\u deactivate\\u pass\\u strength\\u meter(){

wp\\u dequeue\\u脚本(“wc密码强度表”);

}

结束

相关推荐

何时调用wp_set_password()或如何获取密码

Disclaimer: I\'m fully aware of the security issues created by this. This is not for production.每当在WordPress中注册新用户或(重新)设置密码时,我都会尝试捕获该密码,对其进行加密,并将其保存到wp\\u usermeta表中。我成功地加入了profile_update 完成此操作,但上述过程仅在配置文件页面中更改密码且不考虑新用户注册时有效。add_action( \'profile_update\'