filtrod 3.1.0
show_network_site_users_add_new_form
Opis — z kodu źródłowego
Filters whether to show the Add New User form on the Multisite Users screen.
Note: While WordPress is moving towards simplifying labels by removing "New" from "Add New X" labels, we keep "Add New User" here to maintain a clear distinction from the "Add Existing User" section above.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$bool | bool | Whether to show the Add New User form. Default true. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'show_network_site_users_add_new_form', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'show_network_site_users_add_new_form', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}