Advertisement
Guest User

Untitled

a guest
Oct 6th, 2014
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.68 KB | None | 0 0
  1. add_filter('nav_menu_css_class' , 'special_nav_class' , 10 , 2);
  2. function special_nav_class($classes, $item){
  3.     $menu_locations = get_nav_menu_locations();
  4.  
  5.     if ( has_term($menu_locations['Videos'], 'nav_menu', $item) ) {
  6.        return preg_replace('/<a /', '<a class="list-group-item list-group-item-danger active"', $nav_menu, 1);
  7.     }
  8.     return $classes;
  9. }
  10.  
  11. //Result
  12.  
  13. Warning: join() [function.join]: Invalid arguments passed in /home/robertom/public_html/wp-includes/nav-menu-template.php on line 98
  14.  
  15. Warning: join() [function.join]: Invalid arguments passed in /home/robertom/public_html/wp-includes/nav-menu-template.php on line 98
  16. GlaxoSmithKline Intel – Mobility
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement