WP HOOKS
filtrod MU (3.0.0)

update_welcome_subject

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

Opis — z kodu źródłowego

Filters the subject of the welcome email sent to the site administrator after site activation.

Parametry

ParametrTypOpis
$subjectstringSubject of the email.

Wywołanie

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

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