Want to insert a second menu into a WordPress template? Use following code in your theme’s functions.php file OR in site specific plugin.
1 2 3 4 | register_nav_menus( array( 'primary' => __( 'Primary Menu', 'yourtheme'), 'secondary' => __( 'Secondary Menu', 'yourtheme' ), ) ); |
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.