我的服务器刚刚在Dreampress升级,它似乎向日志中抛出了错误。: Got error \'PHP message: PHP Warning: Declaration of My_Walker_Nav_Menu::start_lvl(&$output, $depth) should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = NULL) in /home/wp_bizvdr/ctisinc.com/wp-content/themes/ctis/functions.php on line 5\',
由于每次加载页面时都会发生这种情况,它会累积到日志中,并可能会在一段时间内破坏我们的网站。至少这是Dreamhost告诉我们的。
我想这就是它所指的代码。我似乎写得对,但我想让你接受。
class My_Walker_Nav_Menu extends Walker_Nav_Menu { function start_lvl(&$output, $depth, $args = array() ) { $indent = str_repeat("\\t", $depth); $output .= "\\n$indent<ul class=\\"dropdown-menu\\">\\n"; } }
有什么想法吗?