我目前在wordpress中创建了一个在线目录,但是我在为非作者声明用户名时遇到了一些问题。
} elseif ( is_author() || is_user_member_of_blog() ) {
global $author;
$userdata = get_userdata($author);
echo $before . sprintf($text['author'], $userdata->display_name) . $after;
}
这段代码回应了“用户名”,但仅限管理员而非其他人。我将用户作为订阅者,所以无论如何都要定义角色吗?
答案 0 :(得分:0)
如果要显示当前登录用户的用户名, 你可以从代码中删除这个例子。
从马口: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";
?>
如果误解了这个问题,请随时详细说明。