wp_nav_menu change sub-menu class name?

前端 未结 13 2110
自闭症患者
自闭症患者 2020-11-28 02:44

Is there a way to change the child

    generated by WordPress itself to a custom class name?

    I know the parent

13条回答
  •  余生分开走
    2020-11-28 02:48

    I had to change:

    function start_lvl(&$output, $depth)

    to:

    function start_lvl( &$output, $depth = 0, $args = array() )

    Because I was getting an incompatibility error:

    Strict Standards: Declaration of My_Walker_Nav_Menu::start_lvl() should be compatible with Walker_Nav_Menu::start_lvl(&$output, $depth = 0, $args = Array)

提交回复
热议问题