求助:
報錯:Warning: in_array() expects parameter 2 to be array, string given in D:phpStudyWWWzhutiwp-contentthemesthemeprofunctions.php on line 98
出錯位置:
if ( $depth == 0 && ($args->depth)>=0 && in_array( 'menu-item-has-children', $item->classes )){
$class_names[] = 'menu-item-has-children';
$atts_class[] = 'dropdown-toggle';
$atts['data-toggle'] = 'dropdown';
$caret = ' <span class="caret"></span></a>';
}
請問怎麼修改
可以把in_array第二個參數改為(array)$item->classes ,強制型別轉換成陣列
就是你的
item->classes
不是数组,是个字符串,需要将item->classes
轉換成陣列在使用