如何从角色名称中获取角色id? 时间:2012-06-19 作者:dev-jim 我需要通过给角色命名来检索角色的id。例如:if( current_user_can(\'editor\') ) { //here I want to retrieve the id of editor. } 我该怎么做? 1 个回复 最合适的回答,由SO网友:MaximOrlovsky 整理而成 尝试内置功能get_users. 代码应如下所示:$args = array( \'role\' => \'editor\' ); $editors = get_users($args); foreach ($editors as $user) { echo \'<li>\' . $user->ID . \'</li>\'; } 结束 文章导航