Guest User

Untitled

a guest
May 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. //add active to menu posts
  2. add_filter('nav_menu_css_class' , 'special_nav_class' , 10 , 2);
  3.  
  4. function special_nav_class ($classes, $item) {
  5. if (in_array('current-menu-item', $classes) ){
  6. $classes[] = 'active ';
  7. }
  8. return $classes;
  9. }
Add Comment
Please, Sign In to add comment