How to translate “wrong password” message
We can also use the filter wp_login_errors available in wp-login.php to do the above. Using the same filter you can customize other error messages too like registration, checkmail etc. Use the below code in the active theme’s functions.php file add_filter( ‘wp_login_errors’, ‘override_incorrect_password_msg’, 10, 2 ); function override_incorrect_password_msg( $errors, $redirect_to ) { if( isset( $errors->errors[‘incorrect_password’] ) … Read more