WP HOOKS
filtrod 3.7.0

automatic_updater_disabled

Args 1Plik wp-admin/includes/class-wp-automatic-updater.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters whether to entirely disable background updates.

There are more fine-grained filters and controls for selective disabling. This filter parallels the AUTOMATIC_UPDATER_DISABLED constant in name. This also disables update notification emails. That may change in the future.

Parametry

ParametrTypOpis
$disabledboolWhether the updater should be disabled.

Wywołanie

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

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

Popularne w tej kategorii