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.

Top ↑

See also


Top ↑

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);

}


Top ↑

Changelog

Changelog
VersionDescription
3.7.0Use Core_Upgrader
2.7.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.