Adding an additional menu in WordPress

b-grader

First, you should you this format to add menu location (in your function.php)

add_action('init', 'register_top_menu');

function register_top_menu() {
register_nav_menu('top_menu', __('Top Menu', 'your_text_domain'));
register_nav_menu('bottom_menu', __('Bottom Menu', 'your_text_domain'));
}

(note: ‘your_text_domain’ is used for translation..)

Then in the place you want the menu to apear..

<?php wp_nav_menu( array( 'theme_location' => 'primary-menu' ) ); ?>

so… if you want to add another item seperate to the menu its like this:

<div style="float: left; width: 700px; overflow:hidden;">
<?php wp_nav_menu( array( 'theme_location' => 'primary-menu' ) ); ?>
</div>
<div style="float: left; width: 200px;">
  <?php get_search_form();?>
</div>

ofcourese i reccomend using the css at the style.css file
and using classes on the div’s themselfs but thats the way
i would go about it..

That way you can control the look of each object without
them inefiring with each other..

Hope this helps.
Cheers, Sagive.