Skip to content

Instantly share code, notes, and snippets.

@mi-ca
Created June 27, 2017 08:41
Show Gist options
  • Select an option

  • Save mi-ca/da982d172254dd7ddb8084ddac9c2661 to your computer and use it in GitHub Desktop.

Select an option

Save mi-ca/da982d172254dd7ddb8084ddac9c2661 to your computer and use it in GitHub Desktop.
clean wp-menu.php
<?php
/* CLEAN MENU */
//Deletes all CSS classes and id's, except for those listed in the array below
function custom_wp_nav_menu($var) {
return is_array($var) ? array_intersect($var, array(
//List of allowed menu classes
'current_page_item',
'current_page_parent',
'current_page_ancestor',
'first',
'last',
'vertical',
'horizontal'
)
) : '';
}
function custom_nav_menu_item_id($id, $item) {
$title = sanitize_title_with_dashes(sanitize_title($item->title));
return 'menu-item-'.$title;
}
add_filter('nav_menu_item_id', 'custom_nav_menu_item_id', 10, 2);
add_filter('nav_menu_css_class', 'custom_wp_nav_menu');
add_filter('page_css_class', 'custom_wp_nav_menu');
//Replaces "current-menu-item" with "active"
function current_to_active($text){
$replace = array(
//List of menu item classes that should be changed to "active"
'current_page_item' => 'active',
'current_page_parent' => 'active',
'current_page_ancestor' => 'active',
);
$text = str_replace(array_keys($replace), $replace, $text);
return $text;
}
add_filter ('wp_nav_menu','current_to_active');
//Deletes empty classes and removes the sub menu class
function strip_empty_classes($menu) {
$menu = preg_replace('/ class=""| class="sub-menu"/','',$menu);
return $menu;
}
add_filter ('wp_nav_menu','strip_empty_classes');
/* # MENU */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment