警告:试图访问bool类型值上的数组偏移量的
C:\xampp\htdocs\wordpress2\wp-content\themes\sport-ak\framework\class.category-custom-fields.php警告:试图访问行133中的中的bool类型值的数组偏移量
这是133线:
return isset($key) ? $cat_meta[$key] : '';
这是一个完整的:
public function get_category_meta($term_id, $key) {
if (!$term_id)
return;
$cat_meta = get_option("category_$term_id");
return isset($key) ? $cat_meta[$key] : '';发布于 2021-05-03 20:21:14
第133行检查变量$key是否存在,如果存在,则尝试从另一个变量$cat_meta返回某些内容。
您应该检查变量$cat_meta[$key]是否存在,如下所示:
return isset($cat_meta[$key]) ? $cat_meta[$key] : '';https://stackoverflow.com/questions/67371212
复制相似问题