Can that
Thursday, December 6th, 2007Ignore the previous post, that method is silly. This new method works much better. It uses is_home to target the blog page directly, which is weird because I expected the blog page to target it instead. I found this tidbit of information at http://wordpress.org/support/topic/107583#post-596789. I haven’t figured out how to put your ‘blog’ page in a different order in your menu though, or at least not without building the menu manually.
<ul>
<?php
wp_list_pages(’exclude=9&title_li=&depth=1&sort_column=menu_order’); ?>
<?php
if (is_home()) {echo ‘<li class=”page_item current_page_item”><a href=”‘ , bloginfo(’url’) , ‘/blog/” title=”Blog”>Blog</a></li>’;}
else {echo ‘<li class=”page_item”><a href=”‘ , bloginfo(’url’) , ‘/blog/” title=”Blog”>Blog</a></li>’;}
?>
</ul>