php 此MU插件将阻止任何网站管理员在单个站点中的多站点或主管理员配置文件中编辑超级管理员配置文件。这个mak
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 此MU插件将阻止任何网站管理员在单个站点中的多站点或主管理员配置文件中编辑超级管理员配置文件。这个mak相关的知识,希望对你有一定的参考价值。
<?php
/**
* Prevent users from admins to edit super admin profile in multisite
* Author: Mahlamusa
* Install as MU Plugin
*/
add_action("user_edit_form_tag", "prevent_super_admin_edit");
function prevent_super_admin_edit(){
$current_user_id = get_current_user_id(); //current user
if ( isset( $_GET['user_id'] ) && $_GET['user_id'] == 1 && $current_user_id != 1 ) { //admin user_id = 1
wp_die("You are not allowed to edit the Admin Account.", "Not Allowed", array('back_link'=>true) );
}
}
以上是关于php 此MU插件将阻止任何网站管理员在单个站点中的多站点或主管理员配置文件中编辑超级管理员配置文件。这个mak的主要内容,如果未能解决你的问题,请参考以下文章
php 此MU插件允许从Checkout页面删除字段
在 PHP MySql 站点中实现信用卡处理
将站点上的所有页面(包括子文件夹)的 mod_rewrite 写入单个 php 页面
Wordpress 多站点错误
php 通过代码在WordPress中创建一个新的管理员用户。将此文件放在mu-plugins目录中并更新变量,然后在Wor中加载页面
IFrame 的 JQuery 插件问题