wp_schedule_update_checks()WP 3.1.0

Schedules core, theme, and plugin update checks.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

wp_schedule_update_checks();

Список изменений

С версии 3.1.0 Введена.

Код wp_schedule_update_checks() WP 6.5.2

function wp_schedule_update_checks() {
	if ( ! wp_next_scheduled( 'wp_version_check' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_version_check' );
	}

	if ( ! wp_next_scheduled( 'wp_update_plugins' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_update_plugins' );
	}

	if ( ! wp_next_scheduled( 'wp_update_themes' ) && ! wp_installing() ) {
		wp_schedule_event( time(), 'twicedaily', 'wp_update_themes' );
	}
}