在wordpress中添加/删除特定角色的权限/功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在wordpress中添加/删除特定角色的权限/功能相关的知识,希望对你有一定的参考价值。
/** * Paste the code into your functions.php * For more info about the options available visit: http://codex.wordpress.org/Roles_and_Capabilities */ /** * Add new permissions/capabilities to a specific role * * @param string $role * @param string $cap */ function add_capability($role,$cap) { $role_obj = get_role($role); // get the the role object $role_obj->add_cap($cap); // add $cap capability to this role object } //add_capability('subscriber','read_private_pages'); //Example /** * Remove existing permissions/capabilities to a specific role * * @param string $role * @param string $cap */ function remove_capability($role,$cap) { $role_obj = get_role($role); // get the the role object $role_obj->remove_cap($cap); // add $cap capability to this role object } //remove_capability('subscriber','read_private_pages'); //Example
以上是关于在wordpress中添加/删除特定角色的权限/功能的主要内容,如果未能解决你的问题,请参考以下文章
在特定角色通道中发送消息几秒钟后,尝试删除通知正在添加角色的消息