Title: Exclusive Content
Last modified: August 21, 2016

---

# Exclusive Content

 *  [Slimmons](https://wordpress.org/support/users/slimmons/)
 * (@slimmons)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/exclusive-content/)
 * I have a site, that I would like to allow users to register/login. Most of the
   site is open to anyone to browse, but I would like one page that contains, whatever
   I’d like. Right now I want them to be able to upload an image. I want that page
   to be exclusive to people who have registered. Are there any prebuilt plugins
   for something like this. I’ve got WP User Control plugin for the register/login,
   but it has a few minor bugs if anybody knows of one they like more. I’m really
   stumped on how to make a page open to only members though, that’s what I really
   need help on. Thanks,

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [graphical_force](https://wordpress.org/support/users/graphical_force/)
 * (@graphical_force)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/exclusive-content/#post-4221457)
 * There are a few premium plugins that do this but you can also protect content
   by using conditional statement on whether the user is logged in or not.
 * Example:
 *     ```
       <?php
       if ( is_user_logged_in() ) {
           echo 'Welcome, registered user!';
       } else {
           echo 'Welcome, visitor!';
       }
       ?>
       ```
   
 * [http://codex.wordpress.org/Function_Reference/is_user_logged_in](http://codex.wordpress.org/Function_Reference/is_user_logged_in)
 *  Thread Starter [Slimmons](https://wordpress.org/support/users/slimmons/)
 * (@slimmons)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/exclusive-content/#post-4221550)
 * Awesome, thanks for the help. I guess I can used above code, and in the
    else{
   redirect to homepage //somehow, not sure of the code yet }

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Exclusive Content’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 2 replies
 * 2 participants
 * Last reply from: [Slimmons](https://wordpress.org/support/users/slimmons/)
 * Last activity: [12 years, 7 months ago](https://wordpress.org/support/topic/exclusive-content/#post-4221550)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
