如何在用户元中回显用户ID?

时间:2011-12-10 作者:Jerry Schrader

我需要为每个新成员生成一个唯一的ID号。我本来打算使用WP\\u查询,但只得到一个数组。

1 个回复
SO网友:Evan Yeung

如果要显示当前登录用户的信息,可以使用get_currentuserinfo. [Codex]

Codex中的示例

<?php global $current_user;
      get_currentuserinfo();

      echo \'Username: \' . $current_user->user_login . "\\n";
      echo \'User email: \' . $current_user->user_email . "\\n";
      echo \'User first name: \' . $current_user->user_firstname . "\\n";
      echo \'User last name: \' . $current_user->user_lastname . "\\n";
      echo \'User display name: \' . $current_user->display_name . "\\n";
      echo \'User ID: \' . $current_user->ID . "\\n";
?>
或者,如果要显示非当前登录用户的信息,可以使用get_userdata. [Codex]

WP Codex的两个链接应为您提供这两个函数的语法。如果您有任何进一步的问题或他们没有工作,请询问。

结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post