WordPress Tutorials 1 min read

How to Disable Password Strength Meter in WordPress

Published by Manuel Campos on September 24, 2022 • Updated on December 30, 2025

The Password Strength Meter in WordPress is a feature that evaluates the strength of user passwords during registration, login, or profile updates.

It provides feedback on how secure the password is, encouraging users to create stronger, more complex passwords for improved security.

And there is nothing wrong with using robust passwords.

Lots of people use Admin, Password123, etc so I understand where the WordPress team is coming from.

Having said that, lots of WordPress users including myself don’t feel like we need it.

Getting rid of it is pretty easy.


Custom Code to Disable Password Strength Meter

You can disable the password strength meter using a plugin or by adding custom code to your functions.php file.

function remove_password_strength() {
    wp_dequeue_script( 'wc-password-strength-meter' );
}
add_action( 'wp_print_scripts', 'remove_password_strength', 10 );

Of course there are plugin that can handle this without using custom code, one of the best ones out there is PerfMatters.

I am sure there are other plugins that include the option to disable the password strength meter as part of their optimizations.


Manuel Campos

Manuel Campos

I'm a WordPress enthusiast. I document my journey and provide actionable insights to help you navigate the ever-evolving world of WordPress."

Read Next

Support Honest Reviews

Help keep the reviews coming by using my recommended links.

May earn commission • No extra cost to you