mu_menu_items хук-фильтрWP 3.0.0

Filters available network-wide administration menu options.

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.

Использование

add_filter( 'mu_menu_items', 'wp_kama_mu_menu_items_filter' );

/**
 * Function for `mu_menu_items` filter-hook.
 * 
 * @param string[] $admin_menus Associative array of the menu items available.
 *
 * @return string[]
 */
function wp_kama_mu_menu_items_filter( $admin_menus ){

	// filter...
	return $admin_menus;
}
$admin_menus(string[])
Associative array of the menu items available.

Список изменений

С версии 3.0.0 Введена.

Где вызывается хук

В файле: /wp-admin/network/settings.php
mu_menu_items
wp-admin/network/settings.php 507
$menu_items = apply_filters( 'mu_menu_items', array( 'plugins' => __( 'Plugins' ) ) );

Где используется хук в WordPress

Использование не найдено.