plugin development - How to get the ID of the currently logged in user?

I want to get the ID of the currently logged in user. I've found the function:get_current_user_id which seems to b

I want to get the ID of the currently logged in user. I've found the function: get_current_user_id which seems to be working, however I'm not sure what 'current' means in this context.

Meaning if the user views the profile of another user, then will the current user change to become the other user?

In short I'm looking for a reliable way to always get only the id of the logged in user.

I want to get the ID of the currently logged in user. I've found the function: get_current_user_id which seems to be working, however I'm not sure what 'current' means in this context.

Meaning if the user views the profile of another user, then will the current user change to become the other user?

In short I'm looking for a reliable way to always get only the id of the logged in user.

Share Improve this question asked Dec 27, 2012 at 19:17 Click UpvoteClick Upvote 2231 silver badge8 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 2

get_current_user_id() effectively does what @Giri had described in the first snippet. The internal Wordpress function-call chain eventually calls get_currentuserinfo() which already checks if there is a WP_User object, meaning a user is logged in.

Thus, from what I can see in the linked code, get_current_user_id() always returns the ID of the user that is logged in or zero 0.

In the current default theme twentytwelve they are using get_the_author_meta() to retrieve information about the user, for whom the current author page is displayed. So the difference in WP terminology seems to be "user" for th current, logged in user and "author" for some user, identified by an ID. See: twentytwelve/author.php.

if( is_user_logged_in() ) {   
 global $current_user;
    get_currentuserinfo();
    $userid = $current_user->ID;
}

or

Use it like this

if( is_user_logged_in() ) {   
    $userid = get_current_user_id();
}
  • is_user_logged_in()
  • get_currentuserinfo()
  • get_current_user_id()

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744788354a4593764.html

相关推荐

  • plugin development - How to get the ID of the currently logged in user?

    I want to get the ID of the currently logged in user. I've found the function:get_current_user_id which seems to b

    11小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信