我有一个关于 wordpress 的问题。我需要一个可以向我返回已登录用户的电子邮件的函数。我对作者感兴趣。有谁能够帮我?谢谢!
问问题
24306 次
3 回答
28
在 wordpress 中,您可以使用以下功能:
global $current_user;
get_currentuserinfo();
echo $current_user->user_email;
对于最新版本的 WordPress 4.5 及更高版本
$current_user = wp_get_current_user();
echo $current_user->user_email;
于 2013-05-07T13:10:09.583 回答
2
您可以使用Wordpress Codexwp_get_current_user()
中概述的功能。
使用它的示例如下所示。
$current_user = wp_get_current_user();
return $current_user->user_email;
于 2013-05-07T13:12:42.157 回答
-1
<?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";
?>
你会得到像
Username: Zedd
User email: my@email.com
User first name: John
User last name: Doe
User display name: John Doe
User ID: 1
于 2013-05-07T13:11:39.340 回答