fun' />

Promote your Service and Product online Contact us

+91 87 44 999667; +91 99 11 883996 info@3pixls.com, sales@3pixls.com

Change WP default sub menu class


In WordPress, all sub-menus have the class ‘sub-menu’. To change it to a custom class, add the following code in your functions.php file.

creating_a_responsive_menu_3

[php]
function change_submenu_class($menu) {
$menu = preg_replace(‘/ class="sub-menu"/’,’/ class="myclass" /’,$menu);
return $menu;
}
add_filter(‘wp_nav_menu’,’change_submenu_class’);
[/php]