我已经在wordpress中设置了权限,任何人都可以注册&可以发帖。如果用户发帖,那么我需要查看它并设置为用户角色(如订阅者作者),还需要在我的博客页面上显示谁是作者,谁是订阅者,但只显示用户名。请告诉我我在author.php中编写的代码,以显示具有用户角色的名称
像Jhon Subscriber,Grace Author
答案 0 :(得分:0)
试试这个..
<?php //get the commented user id
$user_id = get_comment(get_comment_ID())->user_id;
if ($user_id)
{
$user_info = get_userdata($user_id );
echo implode(', ', $user_info->roles) ;
} ?>