WP HOOKS
filtrod 3.3.0

wp_is_large_network

Args 4Plik wp-includes/ms-functions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether the network is considered large.

Parametry

ParametrTypOpis
$is_large_networkboolWhether the network has more than 10000 users or sites.
$componentstringThe component to count. Accepts 'users', or 'sites'.
$countintThe count of items for the component.
$network_idintThe ID of the network being checked.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_is_large_network', 'twoja_funkcja', 10, 4 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4) {
	// Twój kod
}