by Plugin Pizza
0 (0 reviews)
Admin Bar Site ID
Display the current site ID in the WordPress admin bar on multisite networks.
Compatible with WP 6.9.4
v2.0.0
Current Version v2.0.0
Updated 3 months ago
Last Update on 03 Jan, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#50,469
—
No change
Active Installs
0+
-100%
KW Avg Position
N/A
—
No change
Downloads
1.7K
+2 today
Support Resolved
0%
—
No change
Rating
0%
Review 0 out of 5
0
(0 reviews)
Next Milestone 10
0+
10+
19,376
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
#50,469
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
0.0
0 reviews
Overall
0%
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
- 2.0.0
- Last Updated
- Jan 03, 2026
- Requires WP
- 3.1+
- Tested Up To
- 6.9.4
- PHP Version
- 5.3 or higher
- Author
- Plugin Pizza
Support & Rating
- Rating
- ☆ ☆ ☆ ☆ ☆ 0
- 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,704
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#954
User Switching
200K+ installs
#251
JetBackup – Backup, Restore & Migrate
100K+ installs
#329
Search & Replace
100K+ installs
#353
Frequently Asked Questions
Common questions about Admin Bar Site ID
The admin bar item is only added on multisite installs for users with the manage_options capability. Show the site ID to users other than Administrators A pluginpizza_admin_bar_site_id_capability filter exists that allows you to override the capability required to add the admin bar menu item. // Change the admin bar site ID capability. add_filter( 'pluginpizza_admin_bar_site_id_capability', 'prefix_admin_bar_site_id_capability' ); /** * Change the admin bar site ID capability. * * @param string $capability The capability required to add the site ID admin * bar menu item. * @return string */ function prefix_admin_bar_site_id_capability( $capability ) { /* * This example changes the capablity to 'edit_posts'. For an overview * of default capabilities, visit the Roles and Capabilities support * article: https://wordpress.org/support/article/roles-and-capabilities/ */ return 'edit_posts'; }