Private Category (members only)
-
Hi every one, I have a website that has four categories, 2 public and 2 private. Only those log in should be able to see the extra 2 categories. This is the code I found, but I can not get it to work:
<?php if(in_category( array( 5,10 ) ) { // if the current post is in categories 5 or 10 ?> <?php if ( !is_user_logged_in() ) { // check whether the user is logged in ?> <p>You'll need to be a member to view this content.</p> <?php } else { // user is logged in so go ahead and show content ?> <?php the_content(); ?> <?php } ?> <?php } ?>
Any ideas? I was told to put that on the head.php, but nothing happens. Any help would be appreciated.
Thanks,
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Private Category (members only)’ is closed to new replies.