wp_nav_menu change sub-menu class name?

前端 未结 13 2112
自闭症患者
自闭症患者 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

    You can use WordPress preg_replace filter (in your theme functions.php file) example:

    function new_submenu_class($menu) {    
        $menu = preg_replace('/ class="sub-menu"/','/ class="yourclass" /',$menu);        
        return $menu;      
    }
    
    add_filter('wp_nav_menu','new_submenu_class'); 
    

提交回复
热议问题