为wordpress角色添加功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为wordpress角色添加功能相关的知识,希望对你有一定的参考价值。
run funciton once, ideally bind to activation hook of a plugin
function update_caps() { $role = get_role( 'editor' ); 'delete_users', 'create_users', 'list_users', 'remove_users', 'add_users', 'promote_users', ); foreach( $caps_to_add as $cap ) $role->add_cap( $cap ); }
以上是关于为wordpress角色添加功能的主要内容,如果未能解决你的问题,请参考以下文章
PHP 在wordpress中为特定角色添加/删除权限/功能