Skip to content

Instantly share code, notes, and snippets.

@accessomnath
Created February 20, 2018 12:43
Show Gist options
  • Save accessomnath/cc11631e10c8aeaed3e34a197007a21e to your computer and use it in GitHub Desktop.
Save accessomnath/cc11631e10c8aeaed3e34a197007a21e to your computer and use it in GitHub Desktop.
FOR ACTIVE CLASS IN WORDPRESS
function special_nav_class ($classes, $item) {
if (in_array('current-menu-item', $classes) ){
$classes[] = 'active ';
}
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment