WordPress用户角色→获取和打印(回显) 时间:2017-09-21 作者:The WP Intermediate 以上是WordPress中定义的三种用户角色。就像我们拉作者描述:<p><?php the_author_meta(\'description\'); ?></p> 我们如何提取用户角色? 1 个回复 最合适的回答,由SO网友:LEXmono 整理而成 答案如下:https://stackoverflow.com/questions/36720949/get-user-role-by-id-wordpressHere is their answer:无法直接获取用户角色。首先,必须获取user\\u meta\\u数据,它将返回一个包含用户角色的对象。Code:$user_meta=get_userdata($user_id); $user_roles=$user_meta->roles; //array of roles the user is part of. 结束 文章导航