Skip to the content.

Multisite Toolbar Additions

Adds a lot useful admin links to the WordPress Toolbar / Admin Bar in Multisite, Network and single site installs.

Multisite Toolbar Additions plugin banner


Description

Quick Access to Super Admin Resources - Time Saver!

This small and lightweight plugin just adds some missed and very useful admin links to your Toolbar / Admin Bar in Multisite installs, and even regular single site installs.

Also included is support for a few third-party plugins out of the box. So you might just switch from the backend or frontend of your site to the ‘Network Wide Plugins’ or access the ‘Nav Menu’ Settings of a sub site/blog. To make you even more happy, the plugin also works just perfectly in single WordPress installs (non-Multisite context), just fewer menu items then… —> Use this time saver and get quicker access :-)

NOTE: This plugin is only intended towards Super Admins / Admins.

General Features & Benefits – Global Usage

Multisite Network Specific Features & Benefits

(Sub) Site Specific Features & Benefits

Included Plugin Support

Out of the box the plugin supports the following other plugins’ admin menu links in the Toolbar if installed and activated:


Installation

Quick Install

  1. Download ZIP: multisite-toolbar-additions.zip
  2. Upload via WordPress (Network) Plugins > Add New > Upload Plugin –> in Multisite you can activate network wide!
  3. Look at your toolbar / admin bar within the “My Sites” menu and enjoy using the new links there :)
  4. If you want you could add a special custom Nav Menu via “Design > Menus” (best if using the main site of your Network for that) and assign it to the new “Multisite Toolbar Menu” menu location (only visible & accessable for Super Admins!).
  5. Go and manage your Multisite Network or just your single site :)

Note: This plugin has NO settings page because I believe it’s just not neccessarry. All customizing could be done via filters, constants and regular WordPress user roles & capabilities. As the plugin is only indended for a Super Admin (Network Admin) usage - that’s the way to go. This way we can save the overhaul of an options panel/settings page, additional database requests, uninstall routines and such. End result: a lightweight system that just works and saves clicks & time :-).

Multisite install: Of course, it’s fully compatible

Single install: The plugin WILL also working like a charm for regular non-Multisite installs - just without the network specific stuff. However, there’s still A LOT (single) site specific stuff supported. So it’s up to your use case :). – I for myself use this plugin on each and every install because it SAVES ME A LOT OF CLICKS & TIME! …and that was the very reason I’ve developed it, yeah :-)


Frequently Asked Questions

Why another Multisite Toolbar plugin, there are already some others!?

You’re right! If you’re happy with one of the others then that’s absolutely great and you don’t need to add or switch anything! :)

I just made this new plugin here for my own needs and some of my client admins. As I am an open source evangelist I like to release my stuff to the public to give back to the community!

Plugin developer David Decker: What has proved its day to day usage and usefulness on more than 100 installs (Multisites and regular single site installs) before, could be used by many other (super) admins as well, right? :-)))

How do I use the custom Nav Menu for Super Admins for the toolbar?

All menu items via a Custom Menu - and at all other places in the Toolbar (a.k.a. Admin Bar) - are only visible and accessable for Super Admins. That means in a Multisite environment all admins who can manage the network. In regular WordPress (single) installs these are users with the Administrator user role.

Added Menu Location by the plugin is: “Multisite Toolbar Menu” (again: only for Super Admins)

Steps for setting up a menu:

How can I adjust the position of my custom Nav Menu?

Since version 1.4.0 of the plugin there’s a filter for that. See this example that needs to be added to your theme’s/ child theme’s functions.php file or a functionality plugin. Try values between 1 and 100:

add_filter( 'mstba_filter_super_admin_nav_menu_priority', 'mstba_custom_position_super_admin_nav_menu' );
/**
 * Multisite Toolbar Additions:
 *    Adjust Super Admin Nav Menu Position
 */
function mstba_custom_position_super_admin_nav_menu() {
	return 20;
}

How do I use the custom Nav Menu for Site Admins for the toolbar?

The usage is identical as the Super Admin menu - see above 2 questions for instructions!

Only difference: This Site Admins menu is only viewable by site admins but only Super Admins can setup and edit it!

The filter for the hook priority here is called mstba_filter_restricted_admin_nav_menu_priority – and works in the very same as above!

How can I adjust the position of Network admin “+ New” section?

This could be easily done with the following example code that needs to be added to your theme’s/ child theme’s functions.php file or a functionality plugin. Try values between 1 and 100:

add_filter( 'mstba_filter_network_admin_new_content_priority', 'mstba_custom_position_network_admin_new_content' );
/**
 * Multisite Toolbar Additions:
 *    Adjust Network Admin "+ New" Position
 */
function mstba_custom_position_network_admin_new_content() {
	return 80;
}

Can I remove the “+ New” (new content) section in Network admin?

Yes, it’s possible! This line of code needs to be added to your theme’s/ child theme’s functions.php file or a functionality plugin:

/**
 * Multisite Toolbar Additions:
 *    Remove Network Admin "+ New" section
 */
add_filter( 'mstba_filter_display_network_new_content', '__return_false' );

Is this plugin Multisite compatible?

Of course it is! :) Works really fine in Multisite invironment - for Super Admins.

In Multisite, could I “network activate” this plugin?

Yes, you could! Again, it’s only displayed and useful for Super Admins. – Activating on a per-site basis is also possible. Just decide what works best for you.

Has this plugin any use for non-Multisite installs?

Yes, of course! :) The plugin is working like a charm in single-site installs - just without the network specific stuff. However, there’s still A LOT (single) site specific stuff supported. So it’s up to your use case :).

Could certain sections/ item groups be removed?

Yes, this is possible! You can remove the following sections: “My Sites” menu area (all network items) / “My Sites” menu area (all sub site specific items) / “Super Admin Nav Menu” group (all items) / “Network Plugin Support” (all network plugin items) / “(Sub Site) Plugin Support” (all site plugin items) / “(Sub) Site Specific Items” - useful to disable for specific Super Admin users…

To achieve this add one, some or all of the following constants to your main theme’s/child theme’s functions.php file, functionality plugin or MU plugin:

/**
 * Multisite Toolbar Additions:
 *    Remove Network Admin Specific Items
 */
define( 'MSTBA_DISPLAY_NETWORK_ITEMS', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Remove Sub Site Specific Items
 */
define( 'MSTBA_DISPLAY_SUBSITE_ITEMS', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable Custom Nav Menu for Super Admins
 */
define( 'MSTBA_SUPER_ADMIN_NAV_MENU', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable restricted Custom Nav Menu for Site Admins
 */
define( 'MSTBA_RESRICTED_ADMIN_NAV_MENU', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable Plugin Support for Network Wide Plugins
 */
define( 'MSTBA_DISPLAY_NETWORK_EXTEND_GROUP', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable Plugin Support for (Sub) Site Specific Plugins
 */
define( 'MSTBA_DISPLAY_SITE_EXTEND_GROUP', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable Site Specific Items
 */
define( 'MSTBA_DISPLAY_SITE_GROUP', FALSE );

/**
 * Multisite Toolbar Additions:
 *    Disable Nav Menu List Edit Items
 */
define( 'MSTBA_DISPLAY_LIST_EDIT_MENUS', FALSE );

Could the the whole toolbar entries be removed, especially for certain users?

Yes, that’s also possible! This could be useful if your site has special user roles/capabilities or other settings that are beyond the default WordPress stuff etc. For example: if you want to disable the display of any “Multisite Toolbar Additions” items for all user roles of “Editor” please use this code:

To hide only from the user with a user ID of “2”:

/**
 * Multisite Toolbar Additions:
 *    Remove Network Admin specific Items for user ID 2
 */
if ( 2 === get_current_user_id() ) {
	define( 'MSTBA_DISPLAY_NETWORK_ITEMS', FALSE );
}

To hide items only in frontend use this code:

/**
 * Multisite Toolbar Additions:
 *    Remove Network Admin specific Items from frontend
 */
if ( ! is_admin() ) {
	define( 'MSTBA_DISPLAY_NETWORK_ITEMS', FALSE );
}

Final note: I DON’T recommend to add customization code snippets to your main theme’s/ child theme’s functions.php file! Please use a functionality plugin or an MU-plugin instead! This way you can also use this better for Multisite environments. In general you are then more independent from theme/child theme changes etc. If you don’t know how to create such a plugin yourself just use one of my recommended ‘Code Snippets’ plugins. Read & bookmark these Sites:

All the custom & branding stuff code above can also be found as a Gist on Github: https://gist.github.com/deckerweb/3498510 (you can also add your questions/ feedback there :)


Screenshots

1. Multisite Toolbar Additions: New Network specific menu items located in “My Sites” toolbar parent item. (Click here for larger version of screenshot).

Multisite Toolbar Additions: New Network specific menu items located in "My Sites" toolbar parent item. ([Click here for larger version of screenshot](https://www.dropbox.com/s/m6w6h8icr44e568/screenshot-1.png)).

2. Multisite Toolbar Additions: Included plugin support for Network aware plugins. (Click here for larger version of screenshot).

Multisite Toolbar Additions: Included plugin support for Network aware plugins. ([Click here for larger version of screenshot](https://www.dropbox.com/s/ztu9haeh48eg6lr/screenshot-2.png)).

3. Multisite Toolbar Additions: New Sub Site/ Blog items located in the parent item for each site. (Click here for larger version of screenshot).

Multisite Toolbar Additions: New Sub Site/ Blog items located in the parent item for each site. ([Click here for larger version of screenshot](https://www.dropbox.com/s/a0qhymxlpkn1qox/screenshot-3.png)).

4. Multisite Toolbar Additions: New (Sub) Site specific menu items - plus included plugin support for useful site specific plugins. (Click here for larger version of screenshot).

Multisite Toolbar Additions: New (Sub) Site specific menu items - plus included plugin support for useful site specific plugins. ([Click here for larger version of screenshot](https://www.dropbox.com/s/w0aoaxwfqfw7iq2/screenshot-4.png)).

5. Multisite Toolbar Additions: How the optional Nav Menu for Super Admins works. (Click here for larger version of screenshot).

Multisite Toolbar Additions: How the optional Nav Menu for Super Admins works. ([Click here for larger version of screenshot](https://www.dropbox.com/s/7u83c0g5ehk4ozq/screenshot-5.png)).

6. Multisite Toolbar Additions: Plugin’s help tab on Nav Menu admin page. (Click here for larger version of screenshot).

Multisite Toolbar Additions: Plugin's help tab on Nav Menu admin page. ([Click here for larger version of screenshot](https://www.dropbox.com/s/dt6kkxqsh7yvbfn/screenshot-6.png)).


Changelog

🎉 3.0.0 - March 2025

⚡ 2.0.1 - 2019-09-23

🎉 2.0.0 - 2019-05-04

⚡ 1.9.4 - 2018-11-03

⚡ 1.9.3 - 2018-10-01

⚡ 1.9.2 - 2018-09-08

⚡ 1.9.1 - 2018-08-22

🎉 1.9.0 - 2018-04-01

🎉 1.8.0 - 2014-10-20

⚡ 1.7.1 - 2014-04/05

🎉 1.7.0 - 2014-03-04

Enjoy using Multisite Toolbar Additions? Please consider making a donation - every donation helps to support the project’s continued development, maintenance and support. Thank you very much in advance for your support!

Additional Info

Idea Behind / Philosophy: Just a little lightweight plugin for all the Multisite Super Admins out there to make their daily network admin life a bit easier. I’ll try to add more plugin support if it makes some sense. So stay tuned :).


Copyright © 2012–2025 David Decker – DECKERWEB.de