Search for this in functions.php and change the true to false, or remove it altogether..
1 2 3 4 5 6 7 |
function twentyten_page_menu_args( $args ) { $args['show_home'] = false; return $args; } add_filter( 'wp_page_menu_args', 'twentyten_page_menu_args' ); |