我正在使用 wordpress 4.5.2,我想从个人资料页面中删除密码强度检查器。我只需要新密码并确认密码字段而不是密码强度检查器
问问题
2202 次
1 回答
4
使用此代码
function wc_ninja_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_ninja_remove_password_strength', 100 );
为此,请将此功能添加到您的
functions.php file
在
wp-content/themes/your-theme-name/:
于 2017-02-23T11:25:56.557 回答