时间:2024-03-09
WordPress函数wp_set_current_user用于更改当前登录的用户,例如管理员代管用户的场景。
wp_set_current_user( int|null $id, string $name = '' )
$id
整数
用户ID
$name
字符串
如果无法提供用户ID,也可以使用用户登录名。
$user_id = 2; $user = get_user_by('id', $user_id); if($user) { wp_set_current_user($user_id, $user->user_login); wp_set_auth_cookie($user_id); do_action('wp_login', $user->user_login, $user); }
wp_set_current_user()函数位于:wp-includes/pluggable.php
相关函数:
wp_get_current_user()
setup_userdata()
wp_logout()
Copyright © 2019-2024 thinkphp.xyz