Okay, I give up. How do you remove links to current pages from the navigation bar in Wordpress? For example, I don’t want to see the Home navigation link on Homepage or About Us link on About Us page.

link|improve this question
So what you have tried, and why didn't it work out? What solutions have you looked into? What documentation or code samples have you looked at in an attempt to research how to approach the problem? The more effort you put into solving your issue and similarly your question, the more effort others will go to, to help you.. – t31os Dec 20 '11 at 15:35
feedback

2 Answers

I typically choose not to remove links from the navigation in order to keep things consistent throughout the site and I advise my clients to do the same. Instead, I style the current page differently so that the guest knows where they are.

link|improve this answer
feedback

hello you ll need to implement such thing in your header.php i guess since im not sure which hook you have to use ( other than init which i guess its not a good one ,cus im not sure)

go have a read wp_page_menu and is_page

  
    if ( is_page($page) ){
    $page_to_exclude = the current page goes here    
    }

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.