Would it be possible to have 2 main menus instead of one, one below the other?
Thanks
2 header menus
2 posts from 2 voices-
Posted 11 months ago #
-
Hi,
Yes I think that's possible.
Kindly go to: wp-content\themes\angular\functions.php and find this line of code:
foreach($avia_config['nav_menus'] as $key => $value){ register_nav_menu($key, THEMENAME.' '.$value); }
below it paste this code:
register_nav_menu('avia', 'Secondary Menu');Now, go to: wp-content\themes\angular\header.php and find this line of code:
wp_nav_menu($args);
below it, paste this code:
$defaults = array( 'theme_location' => 'avia', 'menu' => 'Secondary Menu' ); wp_nav_menu( $defaults );Then in your dashboard(admin panel) inside wordpress. Go to Appearance > Menus. Create a menu and name it: Secondary Menu. Then add menus to it then save. For more information check this site: http://codex.wordpress.org/Appearance_Menus_Screen
Once you're done with it. Kindly post a link to your site so we can give you further instruction.
Regards,
IsmaelPosted 11 months ago #
Reply
You must log in to post.














