Home is where your website starts but by default, Home doesn’t show up in your WordPress menu. Add this bit of code to your functions.php and it will magically appear:
function home_page_menu_args( $args )
{
$args['show_home'] = true;
return $args;
}
add_filter( 'wp_page_menu_args', 'home_page_menu_args' );






