filtrod MU (3.0.0)
mu_menu_items
Opis — z kodu źródłowego
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.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$admin_menus | string[] | Associative array of the menu items available. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'mu_menu_items', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'mu_menu_items', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}