WP HOOKS
filtrod 3.1.0

show_network_site_users_add_new_form

Args 1Plik wp-admin/network/site-users.phpDokumentacja WP ↗

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

ParametrTypOpis
$boolboolWhether 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
}