WP HOOKS
filtrod MU (3.0.0)

newblogname

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

Opis — z kodu źródłowego

Filters the new site name during registration.

The name is the site's subdomain or the site's subdirectory path depending on the network settings.

Parametry

ParametrTypOpis
$blognamestringSite name.

Wywołanie

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

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