Advertisement
Socialking

Untitled

Oct 25th, 2022
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. function dotspice_menu_item_as_active($classes, $item) {
  2.  
  3. if( in_array('my-custom-class',$classes) && ( is_category('my-category') /* OR ...*/  ) )   {
  4.     $classes[] = 'current-menu-item';
  5. }
  6.  
  7. return $classes;
  8. }
  9. add_filter('nav_menu_css_class', 'dotspice_menu_item_as_active', 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement