Warning: This function has been deprecated. Use Core_Upgrader() instead.
wp_update_core() WordPress Function
The wp_update_core() function is used to update the WordPress core software. This function can be used to update to a new version of WordPress, or to update the WordPress core files when a security update is released.
wp_update_core( $current, $feedback = '' ) #
This was once used to kick-off the Core Updater.
Description
Deprecated in favor of instantating a Core_Upgrader instance directly, and calling the ‘upgrade’ method.
See also
Source
File: wp-admin/includes/deprecated.php
function wp_update_core($current, $feedback = '') { _deprecated_function( __FUNCTION__, '3.7.0', 'new Core_Upgrader();' ); if ( !empty($feedback) ) add_filter('update_feedback', $feedback); require ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; $upgrader = new Core_Upgrader(); return $upgrader->upgrade($current); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.7.0 | Use Core_Upgrader |
2.7.0 | Introduced. |