wp_nav_menu change sub-menu class name?

前端 未结 13 2133
自闭症患者
自闭症患者 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 03:09

    replace class:

    echo str_replace('sub-menu', 'menu menu_sub', wp_nav_menu( array(
        'echo' => false,
        'theme_location' => 'sidebar-menu',
        'items_wrap' => '' 
      ) )
    );
    

提交回复
热议问题