To get rid of home, go into
Admin >> Appearances >> Editor >> header.php and find this line:
- Code:
$string = wp_page_menu ('show_home=1&depth=1&title_li=');
and change
show_home=1 to
show_home=0.
And as far as I know you can't put posts into the menubar, but you can put Categories. Try adding this code directly above the closing "menu" </div> tag:
- Code:
<ul><?php wp_list_categories('title_li='); ?></ul>
Read
this page in the Codex to get more information about listing categories.