Hi,
I looked at some menu plugins on WordPress repository and unfortunately most of them require some sort of modification to the theme files. ??
The owner of the site I pointed to, once asked on the forums related to menu. So, I knew other menus can be integrated to PixelHunter theme. But the process is not so intuitive.
If you are comfortable messing with code and want to try. Follow these steps.
1> Register a new secondary menu at functions.php
Change FROM
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'pixelhunter' )
) );
TO
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'pixelhunter' ),
'secondary' => __('Secondary Menu', 'pixelhunter')
) );
2> Call the secondary menu we just registered on functions.php file at header.php below closing </header> tag like
<?php wp_nav_menu( array( 'theme_location' => 'secondary' ) ); ?>
3> Install ‘Drop Down Menu Widget’ Plugin from WordPress repository.
4> Check ‘Use Theme Location’ and point ‘Theme Location’ to ‘Secondary Menu’ and save.
Thanks,
-Hemant