Well, I can walk you through I guess :
1) Create the category for the users-only posts, and lets say it’s #4.
2) Exclude the users-only category from showing its posts on your home page. Backup the index.php or home.php file you’re using. Then, in the index.php or home.php file, find <?php if (have_posts()) : ?>
and insert this (it must go before the loop begins) <?php query_posts('cat=1,2,3'); ?>
Save. You have to list all the categories that should still show.
NB. You clould use cat=-4 but you can only excluse one category this way. If you several users-only go for the first solution.
3) Exclude the user-only category from showing in your sidebar. Backup your sidebar.php (which could be a section of your index.php) and find <?php wp_list_cats(); ?>
. Modify it like this <?php wp_list_cats('exclude=4'); ?> Save.
4) Upload these two files to your theme directory, overwriting the existing ones. Don't forget to backup.
5) Enable PHP to run in your posts. Download the Exec-PHP plugin and install as indicated in your wp-content/plugins directory. Activate as usual in the WP admin menu.
6) Retrieve and install the plugin to list the users-only posts and activate it in the WP admin area. I listed the addresses for these plugins above.
7) Create a page called (say) Users-only. Write your stuff and place your pics. If you chose the PostsInCategory plugin, add this to your post :
[postsincategory#4]`
Save and go see your page, you should have a list of the #4 category posts showing.
If you chose the c2c plugin the code in your post will be a little more complicated but you can customize the look of your list, add author, time, post extracts and so on. The plugin author explains how to do this on his site.
Thats all. Once again, all this works (I’m using 2.0.3) for me and I hope it will for you but I can’t offer any guarantee.