This article will demonstrate how to remove your wordpress Home link from your main menu. Also you can use this method to customize your Main menu from Menues section.

First go to Admin -> Apperance -> Menus in your wordpress installation.

Create a New Menu lets say its name “My_main_menu”

Now add your pages and custome links you need on your main menu.

Goto your template folder and open header.php

replace your

<?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) ); ?>

with following

<?php wp_nav_menu( array( ‘menu’ => ‘My_main_menu’, ‘container_class’ => ‘menu‘, ‘theme_location’ => ‘primary’ ,
‘container’ => ‘div’) ); ?>

This will add My_main_menu items to your Main menu.

That’s it Have fun.