编程语言
首页 > 编程语言> > 我们如何在wordpress中为用户禁用profile.php

我们如何在wordpress中为用户禁用profile.php

作者:互联网

我只想为用户禁用profile.php(完整的仪表板).他们只能访问主要网站,而不能查看仪表板面板.我们还使用cpca插件为订阅者设置了一些角色,因为该访问者可以查看一些页面,只有通过登录网站才能看到这些页面.

请向我建议任何插件或完成此任务的提示,

谢谢

艾伦

解决方法:

我只需要弄清楚这个问题……不幸的是,WordPress中没有很多很棒的选项来禁用配置文件页面,因此我不得不在页面加载操作中使用wp_die().

function disable_user_profile() {

    if ( is_admin() ) {

        $user = wp_get_current_user();

        if ( 2 == $user->ID )
            wp_die( 'You are not allowed to edit the user profile on this demo.' );

    }

}
add_action( 'load-profile.php', 'disable_user_profile' );

在我的示例中,我想阻止单个用户编辑其个人资料(这是针对演示站点的,阻止了演示管理员用户).但是您可以轻松地扮演角色或权限,或者执行其他任何操作.

标签:wordpress-plugin,wordpress,php
来源: https://codeday.me/bug/20191202/2085002.html