…or change the admin user the plugin is tied to
If you’ve ever inherited a WordPress site and discovered that the WPMU DEV plugins are tied to another admin user, you’ll know how frustrating it can be. You might have full admin access—but still not be able to manage the plugin dashboard or account connection.
Fortunately, WPMU DEV provides a powerful (and often overlooked) constant that lets you control exactly who can manage the plugin:
define( 'WPMUDEV_LIMIT_TO_USER', '1' );
In this post, we’ll explain how this works—and how you can use it to regain control safely.
What the Problem Looks Like
When WPMU DEV plugins are installed:
- They often bind management access to the user who connected the account
- Other admins may see the dashboard but can’t interact with key features
- In some cases, you may be completely blocked from reconnecting a new account
This is especially common when:
- A developer handed off the site
- An admin account was deleted
- Credentials are no longer available
The Solution: Restrict Access to a Specific User
The constant:
define( 'WPMUDEV_LIMIT_TO_USER', '1' );
lets you explicitly define which WordPress user ID is allowed to manage WPMU DEV plugins.
What It Does
- Locks WPMU DEV dashboard access to a single user
- Prevents other admins from changing plugin settings
- Allows you to override previous ownership/control issues
How to Use It
Step 1: Find Your User ID
- Go to Users → All Users in WordPress
- Hover over your username
- Look at the URL in your browser—it will include something like:
user_id=1
Make a note of that number.
Step 2: Add the Constant to wp-config.php
- Access your site files (via FTP, hosting panel, or file manager)
- Open the wp-config.php file
- Add the following line (replace
1with your user ID):
define( 'WPMUDEV_LIMIT_TO_USER', '1' );
- Save the file
Step 3: Refresh and Take Control
Once added:
- Log back into WordPress as that user
- Navigate to WPMU DEV Dashboard
- You should now have full control, including:
- Connecting your own WPMU DEV account
- Managing plugins and features
- Disconnecting old accounts
Other users—even admins—will be blocked from making changes.
When to Use This Approach
This method is ideal when:
- You can’t disconnect the previous WPMU DEV account
- Plugin controls are locked to a different user
- You want to centralize control for security or management
Things to Keep in Mind
- The user ID must exist—if that user is deleted, access will break again
- Only one user can manage WPMU DEV when this is enabled
- You can remove the constant at any time to restore normal behavior
Optional: Removing the Restriction
If you later want to allow all admins access again:
- Open wp-config.php
- Remove or comment out the line:
// define( 'WPMUDEV_LIMIT_TO_USER', '1' );
- Save and reload your site
Final Thoughts
When WPMU DEV plugins are tied to the “wrong” admin, it can feel like you’re locked out of your own tools. Using WPMUDEV_LIMIT_TO_USER gives you a clean, reliable way to reclaim control—without needing the original account.
It’s a simple fix, but incredibly powerful for site migrations, handovers, and troubleshooting.
