Using bbPress and s2Member, I need to hide the registration link in the menu for logged in users and the members directory link for non logged in users.
Leave a Reply
You must be logged in to post a comment.
Using bbPress and s2Member, I need to hide the registration link in the menu for logged in users and the members directory link for non logged in users.
You must be logged in to post a comment.
A simple way to achieve that is to create two separate Navigation Menus (
/wp-admin/nav-menus.php
), and in your theme use the following:Instead of
theme_location
, you can use the menu name directly, check the documentation forwp_nav_menu
.And you’d probably would like to use the function
is_user_logged_in
in the template files for the Registration and Directory pages.