警告:试图访问数组中null类型值的偏移量



我在最近使用的wordpress主题中多次出现此错误,但不幸的是它的创建者没有维护

警告:试图访问数组中null类型值的偏移量/应用程序/MAMP多厂商/根//wp-content/插件//controls-stack.php elementor/包括基地第1467行

警告:试图访问数组中null类型值的偏移量/应用程序/MAMP多厂商/根//wp-content/插件//controls-stack.php elementor/包括基地第1469行

这是给出错误的行:

public function end_controls_section() {
$stack_name = $this->get_name();
// Save the current section for the action.
$current_section = $this->current_section;
$section_id = $current_section['section'];
$args = [
'tab' => $current_section['tab'],
];

确保$this->current_section返回数组具有'section'和'tab'元素。此外,为了最佳实践,始终检查数组元素是否为空。

相关内容

最新更新