如何在wordpress的博客文章中显示名称的用户角色

时间:2015-07-05 11:04:36

标签: wordpress author subscriber

我已经在wordpress中设置了权限,任何人都可以注册&可以发帖。如果用户发帖,那么我需要查看它并设置为用户角色(如订阅者作者),还需要在我的博客页面上显示谁是作者,谁是订阅者,但只显示用户名。请告诉我我在author.php中编写的代码,以显示具有用户角色的名称

像Jhon Subscriber,Grace Author

See screenshot here

1 个答案:

答案 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) ;
} ?>