Skip to content

Instantly share code, notes, and snippets.

@softiconic
Last active December 2, 2023 19:00
Show Gist options
  • Save softiconic/d62e3b3182a2302953d5f0e4e43f54f0 to your computer and use it in GitHub Desktop.
Save softiconic/d62e3b3182a2302953d5f0e4e43f54f0 to your computer and use it in GitHub Desktop.
Replace a class in the submenu of a WordPress navigation menu.
/**
* Put this in your functions.php file
*/
function change_submenu_class($menu) {
$menu = preg_replace('/ class="sub-menu"/','/ class="sc-dropdown" /',$menu);
return $menu;
}
add_filter('wp_nav_menu','change_submenu_class');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment