WP_Site_Health_Auto_Updates::test_accepts_dev_updates(): array|false

In this article

Checks if the install is using a development branch and can use nightly packages.

Return

array|false The test results. False if it isn’t a development version.

Source

public function test_accepts_dev_updates() {
	require ABSPATH . WPINC . '/version.php'; // $wp_version; // x.y.z
	// Only for dev versions.
	if ( ! str_contains( $wp_version, '-' ) ) {
		return false;
	}

	if ( defined( 'WP_AUTO_UPDATE_CORE' ) && ( 'minor' === WP_AUTO_UPDATE_CORE || false === WP_AUTO_UPDATE_CORE ) ) {
		return array(
			'description' => sprintf(
				/* translators: %s: Name of the constant used. */
				__( 'WordPress development updates are blocked by the %s constant.' ),
				'<code>WP_AUTO_UPDATE_CORE</code>'
			),
			'severity'    => 'fail',
		);
	}

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

Hooks

apply_filters( ‘allow_dev_auto_core_updates’, bool $upgrade_dev )

Filters whether to enable automatic core updates for development versions.

Changelog

VersionDescription
5.2.0Introduced.

User Contributed Notes

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