Check if user with ID or name X is online

Is there any way to check if a user with a certain id or name is online in WordPress?

Related posts

Leave a Reply

2 comments

  1. jkeesh has a good solution, but that may not offer live information. is_user_logged_in() is a conditional statement for performing actions.

    It’s helpful if you want to do this for example:

    When logged in, show smiley.jpg

    When logged out, don’t show smiley.jpg

    If you are simply trying to do one of those features which forums have that show “x number of users online” and list their usernames, I don’t believe this conditional statement can do that. That would either require some custom code or another plugin.