我想将wordpress网站迁移到新服务器。当我将网站克隆到本地环境并尝试进行一些测试时,收到以下警告消息:
警告:call_user_func_array()期望参数1是有效的 回调,找不到函数'register_shortcodes'或无效函数 命名 /Applications/XAMPP/xamppfiles/htdocs/mySite/wp-includes/class-wp-hook.php 在第286行
这是class-wp-hook.php的代码:
// Avoid the array_slice if possible.
if ( $the_['accepted_args'] == 0 ) {
$value = call_user_func_array( $the_['function'], array() );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args ); //LINE 286
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) );
}
我找不到任何消除此警告的方法,有人可以帮助我吗?