If you want to remove wrong WordPress login shake effect? Use following code in your theme’s functions.php file OR in site specific plugin.
1 2 3 4 5 | function my_login_head() { remove_action('login_head', 'wp_shake_js', 12); } add_action('login_head', 'my_login_head'); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.