WP_Site_Health_Auto_Updates::test_accepts_minor_updates(): array

In this article

Checks if the site supports automatic minor updates.

Return

array The test results.

Source

public function test_accepts_minor_updates() {
	if ( defined( 'WP_AUTO_UPDATE_CORE' ) && false === WP_AUTO_UPDATE_CORE ) {
		return array(
			'description' => sprintf(
				/* translators: %s: Name of the constant used. */
				__( 'WordPress security and maintenance releases are blocked by %s.' ),
				"<code>define( 'WP_AUTO_UPDATE_CORE', false );</code>"
			),
			'severity'    => 'fail',
		);
	}

	/** This filter is documented in wp-admin/includes/class-core-upgrader.php */
	if ( ! apply_filters( 'allow_minor_auto_core_updates', true ) ) {
		return array(
			'description' => sprintf(
				/* translators: %s: Name of the filter used. */
				__( 'WordPress security and maintenance releases are blocked by the %s filter.' ),
				'<code>allow_minor_auto_core_updates</code>'
			),
			'severity'    => 'fail',
		);
	}
}

Hooks

apply_filters( ‘allow_minor_auto_core_updates’, bool $upgrade_minor )

Filters whether to enable minor automatic core updates.

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

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