首页 > wordpress > 【开发笔记】获取当前用户及blog的session

【开发笔记】获取当前用户及blog的session

用户信息
根据wp-include/user.php 里的函数setup_userdata 的说明(解释),用户的信息都储存在这些变量中(使用时用global)

* @global string $userdata User description.
$userdata储存用户描述;
 * @global string $user_login The user username for logging in
$user_login用户名
 * @global int $user_level The level of the user 
用户级别
 * @global int $user_ID The ID of the user
用户ID
 * @global string $user_email The email address of the user
用户邮箱信息
 * @global string $user_url The url in the user's profile
用户的URL地址
 * @global string $user_pass_md5 MD5 of the user's password
$user_pass_md5 MD5加密后的用户密码
 * @global string $user_identity The display name of the user
 *用户显示名称

$current_blog 变量储存当前使用(子)博客的信息,该变量为一个SQL查询 wp表前缀_blogs 所获取到的结果集,如需要博客ID,则使用 $current_blog->blog_id。

Share
分类: wordpress 标签:
  1. 2011年11月8日11:15 | #1

    我来了,我来支持你了

  2. 2009年7月14日23:01 | #2

    我也找不到北。。。

  3. 2009年7月14日21:33 | #3

    水哥的博客专业性很强,我都迷路了。

  1. 本文目前尚无任何 trackbacks 和 pingbacks.