Skip to content

Instantly share code, notes, and snippets.

@basmiddelham
Created March 11, 2019 11:26
Show Gist options
  • Save basmiddelham/f3e3489fcae53315617b9340942e8546 to your computer and use it in GitHub Desktop.
Save basmiddelham/f3e3489fcae53315617b9340942e8546 to your computer and use it in GitHub Desktop.
/**
* Add class to menu-item
*/
add_filter('nav_menu_css_class', function ($classes, $item) {
$classes[] = 'nav-item';
return $classes;
}, 10, 2);
/**
* Add class to menu-link
*/
add_filter('nav_menu_link_attributes', function ($atts, $item, $args) {
// check if the item is in the primary menu
if ($args->theme_location == 'primary_navigation') {
// add the desired attributes:
$atts['class'] = 'nav-link';
}
return $atts;
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment