Home
/
Remove Login Shake Animation
Duplicate Snippet
Embed Snippet on Your Site
Remove Login Shake Animation
Prevent the Login box from shaking when entering the wrong password or username.
php | |
| <?php
|
| add_action( 'login_footer', function () {
|
| remove_action( 'login_footer', 'wp_shake_js', 12 );
|
| } );
|
| |
| |
Comments