Want to remove div container in custom menu in WordPress? Use following code in your theme’s functions.php file OR in site specific plugin.
1 2 3 4 5 | wp_nav_menu( array( 'menu_class' => 'tlm', 'theme_location' => 'primary-menu', 'container' => '' ) ); |
Also read: How to add container to nav_menu sub menu in WordPress?
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.