WP_Site_Health_Auto_Updates::test_wp_automatic_updates_disabled(): array|false

Checks if automatic updates are disabled.


Return

array|false The test results. False if auto-updates are enabled.


Top ↑

Source

File: wp-admin/includes/class-wp-site-health-auto-updates.php. View all references

public function test_wp_automatic_updates_disabled() {
	if ( ! class_exists( 'WP_Automatic_Updater' ) ) {
		require_once ABSPATH . 'wp-admin/includes/class-wp-automatic-updater.php';
	}

	$auto_updates = new WP_Automatic_Updater();

	if ( ! $auto_updates->is_disabled() ) {
		return false;
	}

	return array(
		'description' => __( 'All automatic updates are disabled.' ),
		'severity'    => 'fail',
	);
}


Top ↑

Changelog

Changelog
Version Description
5.3.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.