Hi,
sorry for my bad english and posting again an already answered question!
I would like to add "home" or "blog" to the menu.
First I changed "functions.php" (see below), but nothing happened.
Then I installed "flexi pages" and got home/blog to the sidebar.
But still not to the menu. Maybe I'm missing something...
Thanks for your great theme and greetings from Berlin
Wilhelm - www.schachfieber.de
// 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;
}
add_filter('wp_page_menu_args','childtheme_menu_args');
?>