by Dave Kellam
1 (0 reviews)
Don't Mess Up Prod
Displays a colored environment indicator in the admin bar.
Compatible with WP 6.9
v1.0.1
Current Version v1.0.1
Updated 2 weeks ago
Last Update on 28 Jan, 2026
Refreshed 18 hours ago
Last Refreshed on
Rank
#52,773
—
No change
Active Installs
1+
—
No change
KW Avg Position
N/A
—
No change
Downloads
138
+1 today
Support Resolved
0%
—
No change
Rating
20%
Review 1 out of 5
1
(0 reviews)
Next Milestone 10
0+
10+
33,473
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 8 more installs to reach 10+
Rank Changes
Current
#52,773
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
1.0
0 reviews
Overall
20%
5
0
(0%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.1
- Last Updated
- Jan 28, 2026
- Requires WP
- 6.7+
- Tested Up To
- 6.9
- PHP Version
- 8.0 or higher
- Author
- Dave Kellam
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,733
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
30K+ installs
#937
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization
200K+ installs
#251
Firelight Lightbox
200K+ installs
#254
Query Monitor - The developer tools panel for WordPress
200K+ installs
#256
Frequently Asked Questions
Common questions about Don't Mess Up Prod
URL Matching – Configure environment URLs in Settings → Don't Mess Up Prod, or using the dmup_environment_urls filter
WP_ENVIRONMENT_TYPE – Set this constant in your wp-config.php:
define( 'WP_ENVIRONMENT_TYPE', 'staging' );
WP_ENVIRONMENT_TYPE – Set this constant in your wp-config.php:
define( 'WP_ENVIRONMENT_TYPE', 'staging' );
add_filter( 'dmup_environment_colors', function( $colors ) {
return [
'local' => '#17a2b8', // blue
'development' => '#6f42c1', // purple
'staging' => '#ffc107', // yellow
'production' => '#dc3545', // red
];
} );
return [
'local' => '#17a2b8', // blue
'development' => '#6f42c1', // purple
'staging' => '#ffc107', // yellow
'production' => '#dc3545', // red
];
} );
Role-based access:
add_filter( 'dmup_minimum_capability', function() {
return 'edit_posts'; // or 'manage_options', etc.
} );
Specific users only:
add_filter( 'dmup_allowed_users', function( $users ) {
return array_merge( $users, [ 'johndoe', 'janedoe' ] );
} );
How do I add environment URLs for quick switching?
Configure environment URLs in Settings → Don't Mess Up Prod to show a menu with links to other environments, or use the filter:
add_filter( 'dmup_environment_urls', function() {
return [
'local' => 'http://yourproject.local',
'development' => 'https://dev.yourproject.com',
'staging' => 'https://staging.yourproject.com',
'production' => 'https://yourproject.com',
];
} );
add_filter( 'dmup_minimum_capability', function() {
return 'edit_posts'; // or 'manage_options', etc.
} );
Specific users only:
add_filter( 'dmup_allowed_users', function( $users ) {
return array_merge( $users, [ 'johndoe', 'janedoe' ] );
} );
How do I add environment URLs for quick switching?
Configure environment URLs in Settings → Don't Mess Up Prod to show a menu with links to other environments, or use the filter:
add_filter( 'dmup_environment_urls', function() {
return [
'local' => 'http://yourproject.local',
'development' => 'https://dev.yourproject.com',
'staging' => 'https://staging.yourproject.com',
'production' => 'https://yourproject.com',
];
} );