I want to know if there is any way to remove classes from only from custom links? At least, I want to remove these classes from my custom links "current-menu-ancestor current-menu-parent" - not from dynamic links.
I am using this piece of code:
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_intersect($var, array('current-menu-ancestor current-menu-parent')) : '';
}
It is removing css classes from all static and dynamic links. I just want to remove css classes from custom links.