Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jakebresnehan/2591038 to your computer and use it in GitHub Desktop.
Save jakebresnehan/2591038 to your computer and use it in GitHub Desktop.
Remove class and ID’s from Custom Menus
<?php
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-item')) : '';
}
?>
// http://wp-snippets.com/remove-class-and-ids-from-custom-menus/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment