WordPress 添加自定义角色以及删除默认角色

发布于 2024-12-20 02:41:32 字数 131 浏览 0 评论 0原文

我需要自定义默认角色,因为我只需要 3 个角色 - 管理员、买家、卖家

然后我需要添加买家、卖家并删除所有其他默认角色。我应该怎么办?

如果有任何现成的代码我可以粘贴进去并且它会起作用?

I need to customize the default roles as I need only 3 roles - administrator, buyer, seller.

Then I need to add the buyer, seller and remove all other default roles. What should I do?

If there is any ready made code which I can paste in and it will work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心凉怎暖 2024-12-27 02:41:32

将此代码粘贴到您的主题 function.php 文件中并根据您的需要进行自定义。这是来自我自己的代码库。所以它肯定会起作用。

/* Add member role to the site */
add_role('member', 'Member', array(
    'read' => true,
    'edit_posts' => true,
    'delete_posts' => true,
));

/* Add snypher role to the site */
add_role('snypher', 'Snypher', array(
    'read' => true,
    'edit_posts' => true,
    'delete_posts' => true,
));

/* remove the unnecessary roles */
remove_role('subscriber');
remove_role('editor');
remove_role('author');
remove_role('contributor');

Paste this code in your themes function.php file and customize as your need. This is from my own code library. So it will definitely work.

/* Add member role to the site */
add_role('member', 'Member', array(
    'read' => true,
    'edit_posts' => true,
    'delete_posts' => true,
));

/* Add snypher role to the site */
add_role('snypher', 'Snypher', array(
    'read' => true,
    'edit_posts' => true,
    'delete_posts' => true,
));

/* remove the unnecessary roles */
remove_role('subscriber');
remove_role('editor');
remove_role('author');
remove_role('contributor');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文