Skip to content

Instantly share code, notes, and snippets.

@Bicarbona
Forked from ellenmva/special_nav_class.php
Last active April 19, 2016 21:33
Show Gist options
  • Save Bicarbona/7748496 to your computer and use it in GitHub Desktop.
Save Bicarbona/7748496 to your computer and use it in GitHub Desktop.
WP Nav menu add class
//Filtering a Class in Navigation Menu Item
add_filter('nav_menu_css_class' , 'special_nav_class' , 10 , 2);
function special_nav_class($classes, $item){
if(is_singular('post') && $item->title == 'Menu Item'){
$classes[] = 'current-menu-item';
}
if(is_singular('post_type') && $item->title == 'Menu_Item'){
$classes[] = 'current-menu-item';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment