You appear to be a bot. Output may be restricted
Description
Kicks off the background update process, looping through all pending updates.
Usage
WP_Automatic_Updater::run();
Parameters
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-automatic-updater.php
Lines:
101 to 117 of 117
$this->WP_Automatic_Updater::after_core_update( $this->update_results['core'][0] ); } elseif ( ! empty( $this->update_results['plugin'] ) || ! empty( $this->update_results['theme'] ) ) { $this->after_plugin_theme_update( $this->update_results ); } /** * Fires after all automatic updates have run. * * @since 3.8.0 * * @param array $update_results The results of all attempted updates. */ do_action( 'automatic_updates_complete', $this->update_results ); } WP_Upgrader::WP_Upgrader::release_lock( 'auto_updater' ); }