• Resolved yogesvamp

    (@yogesvamp)


    I used 
    
    add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1);
    add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1);
    add_filter('page_css_class', 'my_css_attributes_filter', 100, 1);
    function my_css_attributes_filter($var) {
      return is_array($var) ? array() : '';
    }
    
    This removed the class from my
    
    <li> but i also want to remove the id from
    <ul>
    any idea
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove the ul id from wordpress navigation’ is closed to new replies.