I'm working on a site for a client and am using the wp_page_menu tag to display the main navigation menu for the site. I have it set to display the home link (though I have renamed the link as "News+Blog"), but I DO NOT want the home link to be first in the menu. According to the design, it needs to be second last.
Is there any way to still keep the home link, but make it so doesn't display first?
My current code is:
<?php wp_page_menu( array( 'show_home' => 'News+Blog', 'sort_column' => 'menu_order', 'menu_class' => 'nav_links', 'depth' => '1' ) ); ?>