wp_schedule_update_checks

Advertisement

Summery Summery

Schedule core, theme, and plugin update checks.

Syntax Syntax

wp_schedule_update_checks()

Source Source

File: wp-includes/update.php

	if ( isset( $current->last_checked, $current->version_checked )
		&& 12 * HOUR_IN_SECONDS > ( time() - $current->last_checked )
		&& $current->version_checked === $wp_version
	) {
		return;
	}

	wp_version_check();
}
/**
 * Check the last time plugins were run before checking plugin versions.
 *

Advertisement

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

Advertisement

Leave a Reply