这是我在WordPress中遇到的问题。代码片段在这里。警告说问题出在第286行。第286行以第二个$ value变量开头。这是网站的链接:RedTwig这是文件的链接: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 );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) );
}