我目前在wordpress中创建了一个在线目录,但我在为非作者声明用户名时遇到了一些问题。
} elseif ( is_author() || is_user_member_of_blog() ) {
global $author;
$userdata = get_userdata($author);
echo $before . sprintf($text['author'], $userdata->display_name) . $after;
}
这段代码返回"用户名",但只针对管理员而不是其他人。我将用户作为订阅者,那么有什么方法来定义角色吗?
如果要显示当前登录用户的用户名,你可以从手抄本中找到这个例子。
来自马的嘴:http://codex.wordpress.org/Function_Reference/get_currentuserinfo
<?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";
?>
如果你误解了问题,请详细说明。