WP HOOKS
akcjaod 5.8.0

deleted_theme

Args 2Plik wp-admin/includes/theme.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Fires immediately after a theme deletion attempt.

Parametry

ParametrTypOpis
$stylesheetstringStylesheet of the theme to delete.
$deletedboolWhether the theme deletion was successful.

Wywołanie

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

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

Popularne w tej kategorii