放松/禁用密码策略
4 个回复
SO网友:MrCalvin
这样就可以了:-)
add_action( \'wp_print_scripts\', \'DisableStrongPW\', 100 );
function DisableStrongPW() {
if ( wp_script_is( \'wc-password-strength-meter\', \'enqueued\' ) ) {
wp_dequeue_script( \'wc-password-strength-meter\' );
}
}
我找到了解决方案here.SO网友:Michael Schober
目前无法更改密码的强度要求。您只能通过退出密码脚本的队列来完全停用其功能:
add_action( \'wp_print_scripts\', \'DisableStrongPW\', 100 );
function DisableStrongPW() {
if ( wp_script_is( \'user-profile\', \'enqueued\' ) ) {
wp_dequeue_script( \'user-profile\' );
}
}
要更改密码的最小强度,我可以推荐这个插件,它构建在同一个库上,并很好地集成到woocommerce中:https://wordpress.org/plugins/wc-password-strength-settings/SO网友:jockolad
要更新此答案:
add_action( \'wp_print_scripts\', \'DisableStrongPW\', 100 );
function DisableStrongPW() {
if ( wp_script_is( \'user-profile\', \'enqueued\' ) ) {
wp_dequeue_script( \'user-profile\' );
}
}
SO网友:phenomenia
也可以在wp\\u generate\\u password函数中进行设置。以防您将其用于自己的代码。请参见:https://codex.wordpress.org/Function_Reference/wp_generate_password