本文介绍了如何在 Wordpress 中为用户添加用户角色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试添加具有贡献者"特定角色的用户.怎么把这个角色加到wordpress管理员中?
I am trying to add a user with a specific role of "Contributer". How to add this role into the wordpress admin?
推荐答案
将此行添加到 function.php 以完成此操作:
Add this line to function.php to get this done :
$result = add_role('contributor', __( 'Contributor' ), array('read'=> true,'edit_posts' => false,'delete_posts' => false,'level_0' => 0));
这篇关于如何在 Wordpress 中为用户添加用户角色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!