Hi there,
I updated to the latest version of Thematic and since then, I've lost my Home link. I updated the functions.php file to include echo off, but that hasn't fixed it. My site is up and down due to hosting difficulties right now so please be patient if you're trying to view it. :P
Here's what I have in functions.php
// Adds a home link to your menu in Thematic 0.9.7.4
function childtheme_menu_args($args) {
$args = array(
'show_home' => 'Home',
'sort_column' => 'menu_order',
'menu_class' => 'menu',
'echo' => false
);
return $args;
}
add_filter('wp_page_menu_args','childtheme_menu_args');