WP HOOKS
filtrod 3.1.0

show_network_site_users_add_existing_form

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

Opis — z kodu źródłowego

Filters whether to show the Add Existing User form on the Multisite Users screen.

Parametry

ParametrTypOpis
$boolboolWhether to show the Add Existing User form. Default true.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'show_network_site_users_add_existing_form', 'twoja_funkcja' );

function twoja_funkcja($param_1) {
	// Twój kod
}