Skip to content

Instantly share code, notes, and snippets.

@Sanabria
Created July 16, 2018 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sanabria/8eb8e394654069cfda0d77e9b7665400 to your computer and use it in GitHub Desktop.
Save Sanabria/8eb8e394654069cfda0d77e9b7665400 to your computer and use it in GitHub Desktop.
/**
* Bulma Tabs Walker Subnav
*/
add_filter('nav_menu_css_class' , __NAMESPACE__ .'\special_nav_class' , 10 , 2);
function special_nav_class($classes, $item){
if( in_array('current-menu-item', $classes) ){
$classes[] = 'is-active ';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment