by Medium Rare
5 (1 reviews)
Environment & Debug Bar
Display your environment and debug info in the toolbar.
Compatible with WP 7.0
v1.4.0
Current Version v1.4.0
Updated 1 month ago
Last Update on 17 Mar, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#21,731
—
No change
Active Installs
40+
-7%
KW Avg Position
118
—
No change
Downloads
3.5K
+1 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(1 reviews)
Next Milestone 50
40+
50+
1,873
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 5 more installs to reach 50+
Rank Changes
Current
#21,731
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
5.0
1 reviews
Overall
100%
5
1
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| env | 30 | — | Tag | 1 week ago |
| staging | 133 | — | Tag | 1 week ago |
| environment | 191 | — | Tag | 1 week ago |
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.4.0
- Last Updated
- Mar 17, 2026
- Requires WP
- 5.5+
- Tested Up To
- 7.0
- PHP Version
- 7.4 or higher
- Author
- Medium Rare
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 1
- 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,720
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#956
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization
200K+ installs
#254
InfiniteWP Client
200K+ installs
#255
Header and Footer Scripts
200K+ installs
#256
Frequently Asked Questions
Common questions about Environment & Debug Bar
add_filter( 'edt_capability_check', function ( $capability ) {
return 'edit_pages';
});
What are environment types?
Instead of displaying the exact environment you've set, we show types. A type is a group of environments that roughly have the same purpose. Like local, dev, develop and development.
Can you support another environment?
If you've found a common environment that we do not yet recognize as part of a type, please let us know and we'll gladly add it.
If you have a rare, custom, or localized environment name, we won't be adding those. However, you can add support for them yourself, with these snippets:
add_filter( 'edt_env_development', function ( $environments ) {
$environments[] = 'daring_development';
return $environments;
});
add_filter( 'edt_env_staging', function ( $environments ) {
$environments[] = 'strange_staging';
return $environments;
});
add_filter( 'edt_env_production', function ( $environments ) {
$environments[] = 'precious_production';
return $environments;
});
Please make sure the environment names are lowercased.
Can you support more types?
Perhaps, if you can convince us. Please create a GitHub issue, so we can discuss your use-case.
Can I show the toolbar on the frontend as well?
You can, with the snippet below.
Keep in mind that if you have a site where the end users are logged in, and see the toolbar on the frontend, you probably don't want to bother them by showing the environment info.
add_filter( 'edt_show_on_frontend', '__return_true' );
return 'edit_pages';
});
What are environment types?
Instead of displaying the exact environment you've set, we show types. A type is a group of environments that roughly have the same purpose. Like local, dev, develop and development.
Can you support another environment?
If you've found a common environment that we do not yet recognize as part of a type, please let us know and we'll gladly add it.
If you have a rare, custom, or localized environment name, we won't be adding those. However, you can add support for them yourself, with these snippets:
add_filter( 'edt_env_development', function ( $environments ) {
$environments[] = 'daring_development';
return $environments;
});
add_filter( 'edt_env_staging', function ( $environments ) {
$environments[] = 'strange_staging';
return $environments;
});
add_filter( 'edt_env_production', function ( $environments ) {
$environments[] = 'precious_production';
return $environments;
});
Please make sure the environment names are lowercased.
Can you support more types?
Perhaps, if you can convince us. Please create a GitHub issue, so we can discuss your use-case.
Can I show the toolbar on the frontend as well?
You can, with the snippet below.
Keep in mind that if you have a site where the end users are logged in, and see the toolbar on the frontend, you probably don't want to bother them by showing the environment info.
add_filter( 'edt_show_on_frontend', '__return_true' );
#wp-admin-bar-edt-group .env-type-1 { background-color: #f09; }
add_action( 'admin_enqueue_scripts', function () {
wp_dequeue_style( 'edt-backend-css' );
});
wp_dequeue_style( 'edt-backend-css' );
});