警告:参数 1 到 wp_default_styles() 应为引用,值给定



我通过调试器运行了这段代码;它返回时没有错误。

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);

警告:wp_default_styles(( 的参数 1 应为参考,值在第 600 行的/homepages/27/d653904259/htdocs/clickandbuilds/Jellyx/wp-include/plugin.php

600路:

call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args']));

更新WordPress或尝试添加

define('WP_DEBUG', false);

wp-config.php.

最新更新