Created
July 16, 2018 00:31
-
-
Save Sanabria/8eb8e394654069cfda0d77e9b7665400 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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