php - Is it possible to allow people (not registered) just view a certain area in wordpress? -


i have things in mind: possible allow people view area in wordpress?

thanks all

there plugins this. 1 of appears (http://wpusersplugin.com/). around , find plugin that's right you.

you can alter parts of theme function is_user_logged_in. if there parts of theme or site want logged in users see, wrap in following:

<?php  if ( is_user_logged_in() )  {    // here's stuff logged in users } else {    // here's stuff users not logged in } ?> 

Comments