Hello again.
I am trying to add a home link in the menu. In function.php I comment out this lines as described but nothing happen.
// 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' => 'forsiden',
'sort_column' => 'menu_order',
'menu_class' => 'menu',
'echo' => true
);
return $args;
}
add_filter('wp_page_menu_args','childtheme_menu_args');
I have also read http://codex.wordpress.org/Template_Tags/wp_page_menu but can't figure out how to enable home in the menu.
Thanks for your time