bbPress uses a custom post type called forums. When I click on forums, both forums and the Blog menu items are highlighted as a current-menu-item.

Is there a way to remove the current-menu-item from Blog when the post-type = forum?

link|improve this question
Check this answer wordpress.stackexchange.com/questions/1230/… – Ashfame Aug 24 '11 at 13:58
feedback

2 Answers

i would use jquery

$('#menu-item-xxx').removeClass('current-menu-item');
link|improve this answer
feedback

I'd try to format my CSS rules accordingly. If you're using body_class() you can always target single-posttype so as a quick example

.single-posttype .current-menu-item { display: none; }

Will hide the current menu item when you're on a specific post type. If this makes sense hehe. Another way would be creating your own navigation menu Walker and running some additional checks inside.

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.