【发布时间】:2019-11-10 02:40:14
【问题描述】:
我在 WordPress 仪表板中添加新插件时看到此错误。请任何专家解决我的问题 我的网站:https://serverproofs.com
我已经在使用最新版本的 WordPress。 我使用优惠券主题。
if ( ! $index_key ) {
/*
* This is simple. Could at some point wrap array_column()
* if we knew we had an array of arrays.
*/
foreach ( $this->output as $key => $value ) {
if ( is_object( $value ) ) {
//152 line $newlist[ $key ] = $value->$field;
} else {
$newlist[ $key ] = $value[ $field ];
}
}
$this->output = $newlist;
return $this->output;
}
注意:未定义属性:/home/servupgg/public_html/wp-includes/class-wp-list-util.php 第 152 行中的 stdClass::$plugin
注意:未定义属性:/home/servupgg/public_html/wp-includes/class-wp-list-util.php 第 152 行中的 stdClass::$plugin
【问题讨论】: