determining if the user is logged in

I am new to wordpress, and trying to get my head around the idea of sessions and all. I read in a lot of places that session concept is not used in wordpress. Anyway, I downloaded the my-login-theme plugin. My question is, when a user navigates to some secured area, I want to check if that user is logged in or not. Once I check that, I want to get user details like email, and full name. Is this possible in wordpress?

Thanks

Related posts

Leave a Reply

2 comments

  1. You can use is_user_logged_in() to see if the user is logged in. You can use get_userdata() to get the logged in users info.

    If you want to restrict access to pages, have you looked at using the plugin Members You can enable shortcodes and template tags to control restricted content to Roles.