Call_user_func_ error. php plugin
-
I’m seeing a small message at the bottom of the site I’m working on
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘tc_slider_adjust’ not found or invalid function name in /home/measuredmerit/public_html/wp-includes/plugin.php on line 525
This is the code from around there.
do {
foreach ( (array) current($wp_filter[$tag]) as $the_ )
if ( !is_null($the_[‘function’]) )
call_user_func_array($the_[‘function’], array_slice($args, 0, (int) $the_[‘accepted_args’]));} while ( next($wp_filter[$tag]) !== false );
array_pop($wp_current_filter);
I’m pretty new to all this and not sure what’s going on. I think some plugin I installed/uninstalled did this? I just want to remove the error message from the footer somehow. Thanks
- The topic ‘Call_user_func_ error. php plugin’ is closed to new replies.