Heyyyyyy, DP-ers! I was researching how to add a members only section to a blog & I came up on this page here: http://justintadlock.com/archives/2009/05/09/using-shortcodes-to-show-members-only-content ...just in case you want to read the very long post. I will highlight some good tidbits: Showing content to logged-in users Now, you’ll see how to show content only to users that are logged into your site. This will be hidden from all other users and not shown in your feeds. Add this code to your theme’s functions.php file: Then, all you must do is add some content in between your [member] tags when writing a post/page like so: Content for users that are not logged in Many people want to focus on hiding content from this group of users, but I want to start by showing them content. Most traffic to your site will likely be through non-logged in users, so make sure you give this group of people something. Open your theme’s functions.php file in your favorite text editor. Add this PHP code: Anytime you write a post/page, add this to only show content to users that are not logged in: There is tons more stuff in the original post. I hope that helps out someone here!