1,000+
December 19, 2025
August 21, 2020
WordPress 5.5 introduced a way to differentiate between environment types (development, staging, production). This plugin shows your site’s environment type in the admin bar and the dashboard “At a Glance” widget.
To gain additional control — for example, setting the environment or other values from the WP admin (when wp-config.php is writable) — consider installing our other plugin 0 Day Analytics.
Colors are intentionally fixed to avoid confusion. If colors were configurable, they’d need to be identical across all related servers to remain consistent.
Custom environment types were briefly supported in WordPress 5.5 but were removed in 5.5.1. This plugin does not support custom types.
By default, the environment type is shown only to users with administrative capabilities. This avoids exposing a prominent colored indicator to regular subscribers and other non-admin users.
For additional control, use the det_display_environment_type filter hook. Example:
function rt_det_display_filter( $display ) {
// Disable the environment type display for user ID 2.
return ( get_current_user_id() !== 2 );
}
add_filter( 'det_display_environment_type', 'rt_det_display_filter' );
WP_DEBUG constant. WP Control plugin introduced.| Version | Download | Type |
|---|---|---|
| 1.6.0 | Download | Stable |
| 1.5.0 | Download | Stable |
| 1.4.1 | Download | Stable |
| 1.4.0 | Download | Stable |
| 1.3.5 | Download | Stable |
| 1.3.4 | Download | Stable |
| 1.3.3 | Download | Stable |
| 1.3.2 | Download | Stable |
| 1.3.1 | Download | Stable |
| 1.3 | Download | Stable |
| 1.2.1 | Download | Stable |
| 1.2 | Download | Stable |
| 1.1 | Download | Stable |
| 1.0.2 | Download | Stable |
| 1.0.1 | Download | Stable |
| 1.0 | Download | Stable |
| Development | Download | Trunk |