WP HOOKS
akcjaod 3.9.0

ms_site_not_found

Args 3Plik wp-includes/ms-load.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires when a network can be determined but a site cannot.

At the time of this action, the only recourse is to redirect somewhere and exit. If you want to declare a particular site, do so earlier.

Parametry

ParametrTypOpis
$current_site\WP_NetworkThe network that had been determined.
$domainstringThe domain used to search for a site.
$pathstringThe path used to search for a site.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'ms_site_not_found', 'twoja_funkcja', 10, 3 );

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

Popularne w tej kategorii