Warning: call_user_func_array() solution
-
hi,
i have got this warning on the registration page with theme my login plugin:
“Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘wp_shake_js’ not found or invalid function name in /wp-includes/plugin.php on line 505”and here is the code to fix it:
function my_login_head() { remove_action('login_head', 'wp_shake_js', 12); } add_action('login_head', 'my_login_head');
add that code to functions.php
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Warning: call_user_func_array() solution’ is closed to new replies.