wp_schedule_update_checks()
Schedules core, theme, and plugin update checks.
No Hooks.
Returns
null. Nothing (null).
Usage
wp_schedule_update_checks();
Changelog
| Since 3.1.0 | Introduced. |
wp_schedule_update_checks() wp schedule update checks code WP 6.9.1
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' );
}
}