Last active
December 2, 2023 19:00
-
-
Save softiconic/d62e3b3182a2302953d5f0e4e43f54f0 to your computer and use it in GitHub Desktop.
Replace a class in the submenu of a WordPress navigation menu.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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