Remove Login Shake
<?php
function my_login_head() {
remove_action('login_head', 'wp_shake_js', 12);
}
add_action('login_head', 'my_login_head');
?>
Instructions:
Add to functions.php to remove the ‘wrong password’ screen shake.
<?php
function my_login_head() {
remove_action('login_head', 'wp_shake_js', 12);
}
add_action('login_head', 'my_login_head');
?>
Add to functions.php to remove the ‘wrong password’ screen shake.
If you like this snippet, share it with friends!