{"id":151,"date":"2016-05-27T08:23:18","date_gmt":"2016-05-27T08:23:18","guid":{"rendered":"http:\/\/www.3pixls.com\/blog\/?p=151"},"modified":"2016-05-27T08:24:22","modified_gmt":"2016-05-27T08:24:22","slug":"change-wp-default-sub-menu-class","status":"publish","type":"post","link":"https:\/\/www.3pixls.com\/blog\/change-wp-default-sub-menu-class\/","title":{"rendered":"Change WP default sub menu class"},"content":{"rendered":"<p>In WordPress, all sub-menus have the class &#8216;sub-menu&#8217;. To change it to a custom class, add the following code in your <em>functions.php<\/em> file.<\/p>\n<p><img loading=\"lazy\" class=\"alignnone size-full wp-image-153\" src=\"http:\/\/www.3pixls.com\/blog\/wp-content\/uploads\/2016\/05\/creating_a_responsive_menu_3.png\" alt=\"creating_a_responsive_menu_3\" width=\"638\" height=\"250\" srcset=\"https:\/\/www.3pixls.com\/blog\/wp-content\/uploads\/2016\/05\/creating_a_responsive_menu_3.png 638w, https:\/\/www.3pixls.com\/blog\/wp-content\/uploads\/2016\/05\/creating_a_responsive_menu_3-300x118.png 300w\" sizes=\"(max-width: 638px) 100vw, 638px\" \/><\/p>\n<p>[php]<br \/>\nfunction change_submenu_class($menu) {<br \/>\n  $menu = preg_replace(&#8216;\/ class=&quot;sub-menu&quot;\/&#8217;,&#8217;\/ class=&quot;myclass&quot; \/&#8217;,$menu);<br \/>\n  return $menu;<br \/>\n}<br \/>\nadd_filter(&#8216;wp_nav_menu&#8217;,&#8217;change_submenu_class&#8217;);<br \/>\n[\/php]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In WordPress, all sub-menus have the class &#8216;sub-menu&#8217;. To change it to a custom class, add the following code in your functions.php file. [php] function change_submenu_class($menu) { $menu = preg_replace(&#8216;\/ class=&quot;sub-menu&quot;\/&#8217;,&#8217;\/ class=&quot;myclass&quot; \/&#8217;,$menu); return $menu; } add_filter(&#8216;wp_nav_menu&#8217;,&#8217;change_submenu_class&#8217;); [\/php]<\/p>\n","protected":false},"author":1,"featured_media":153,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[8,9],"tags":[],"_links":{"self":[{"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/posts\/151"}],"collection":[{"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/comments?post=151"}],"version-history":[{"count":2,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/posts\/151\/revisions"}],"predecessor-version":[{"id":154,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/posts\/151\/revisions\/154"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/media\/153"}],"wp:attachment":[{"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/media?parent=151"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/categories?post=151"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.3pixls.com\/blog\/wp-json\/wp\/v2\/tags?post=151"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}