@susi80
14 years, 10 months ago
Hello,
could everybody tell me if there is a possibility to show the menu bar (links: index/members/groups/blogs) only to logged in users?
Please help me,
Thank you very much
Susi
@takeo
Conditionals… i.e.
<?php if ( is_user_logged_in() ) : ?> logged in stuff <?php endif; ?> <?php if ( !is_user_logged_in() ) : ?> logged out stuff <?php endif; ?>
Thanks very much, David!!!