apply_filters( ‘mu_menu_items’, string[] $admin_menus )

In this article

Filters available network-wide administration menu options.

Description

Options returned to this filter are output as individual checkboxes that, when selected, enable site administrator access to the specified administration menu in certain contexts.

Adding options for specific menus here hinges on the appropriate checks and capabilities being in place in the site dashboard on the other side. For instance, when the single default option, ‘plugins’ is enabled, site administrators are granted access to the Plugins screen in their individual sites’ dashboards.

Parameters

$admin_menusstring[]
Associative array of the menu items available.

Source

$menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.