Warning: Declaration of Xiranst_Main_Walker_Nav_Menu::start_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array) in wp-content/themes/xiranst-theme/functions.php on line 156
这个警告表明你的 start_lvl 方法的参数不符合 Walker_Nav_Menu::start_lvl 方法的要求。具体来说,start_lvl 方法应该接受三个参数:$output, $depth, 和 $args。在你的函数中,只有两个参数:$output 和 $depth。为了解决这个警告,你需要将你的 start_lvl 方法修改为如下形式,以匹配父类 Walker_Nav_Menu::start_lvl 的声明:
解决方法如下
很明显报错在第156行,那么修改下就行了,亲测可用
错误代码:
function start_lvl( &$output, $depth ) {
//In a child UL, add the 'dropdown-menu' class
$indent = str_repeat( "\t", $depth );
$output .= "\n$indent<ul class=\"dropdown-menu\">\n";
}
改成:
function start_lvl( &$output, $depth = 0, $args = null ) {
// Your existing code here
$indent = str_repeat( "\t", $depth );
$output .= "\n$indent<ul class=\"dropdown-menu\">\n";
}