WordPress Main Menu – Hide ‘Home’ link on homepage only

If you only want to hide it to the users, i suggest using the following CSS:

body.home a[title="Home"] {
    display: none;
}

Explanation: WordPress generates several classes for the body tag. The home class is used to hide all links with the title Home on the homepage.

Working Example (code taken from the default theme): http://jsfiddle.net/yJVyK/1/

Note: The attribute selector does not work in IE6

Leave a Comment