wppaste
WordPress

apply_filters( 'mu_menu_items', string[] $admin_menus )

Since
MU (3.0.0)
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.

Compatibility

WordPress
since MU (3.0.0)
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Parameters

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

Where this hook fires · 1

  • wp-admin/network/settings.php:503file scope

Source code

		 * screen in their individual sites' dashboards.		 *		 * @since MU (3.0.0)		 *		 * @param string[] $admin_menus Associative array of the menu items available.		 */		$menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) ); 		if ( $menu_items ) :			?>			<h2><?php _e( 'Menu Settings' ); ?></h2>			<table id="menu" class="form-table">				<?php $enable_administration_menus_title = __( 'Enable administration menus' ); ?>

Changelog

Introduced in MU (3.0.0). Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.9.7 tag, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.