diff --git a/src/wp-includes/update.php b/src/wp-includes/update.php index 7e6bb65421..c815d157aa 100644 --- a/src/wp-includes/update.php +++ b/src/wp-includes/update.php @@ -232,6 +232,11 @@ function wp_version_check( $extra_stats = array(), $force_check = false ) { // Trigger background updates if running non-interactively, and we weren't called from the update handler. if ( $doing_cron && ! doing_action( 'wp_maybe_auto_update' ) ) { + /** + * Fires during wp_cron, starting the auto update process. + * + * @since 3.9.0 + */ do_action( 'wp_maybe_auto_update' ); } }