• i have a page that only signed users can see (like admin) and all the other cant and i’m not sure how to accomplish that in wordpress, mabybe you could help me..

    this is a project for an animal association and i need to finish it by saturday…

    thanks, revital

Viewing 1 replies (of 1 total)
  • This will allow only registered and logged-in users to see the page.

    <?php if ( is_user_logged_in() ) : ?>
        <!-- Normal page content here -->
    <?php  else: // if user_logged_in ?>
       <h4>Sorry!  You must be logged in to view the Member List.</h4>
    <?php endif; ?>
Viewing 1 replies (of 1 total)
  • The topic ‘a page that only admin can see’ is closed to new replies.