Skip to content

Instantly share code, notes, and snippets.

@isaacdanielanderson
Created November 12, 2017 18:49
Show Gist options
  • Save isaacdanielanderson/0bb2716cf178157b7a143b53982458f3 to your computer and use it in GitHub Desktop.
Save isaacdanielanderson/0bb2716cf178157b7a143b53982458f3 to your computer and use it in GitHub Desktop.
Add an "Active" Class to current page in WP_NAV_MENU();
// ======= Custom active class added to nav menu ======= //
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