HI,
I've searched the forums and found nothing about the Home link not showing after it's been added/un-commented from functions.php
website: http://www.millcitymoose.org
This is the code I have uncommented, and the Home link still does not show.
// Adds a home link to your menu
// http://codex.wordpress.org/Template_Tags/wp_page_menu
function childtheme_menu_args($args) {
$args = array(
'show_home' => 'Home',
'sort_column' => 'menu_order',
'menu_class' => 'menu',
'echo' => true
);
return $args;
}