Warning: This function has been deprecated. Use Plugin_Upgrader() instead.

wp_update_plugin() WordPress Function

The wp_update_plugin() function updates a plugin to the latest version.

wp_update_plugin( $plugin,  $feedback = '' ) #

This was once used to kick-off the Plugin Updater.


Description

Deprecated in favor of instantating a Plugin_Upgrader instance directly, and calling the ‘upgrade’ method. Unused since 2.8.0.

Top ↑

See also


Top ↑

Source

File: wp-admin/includes/deprecated.php

function wp_update_plugin($plugin, $feedback = '') {
	_deprecated_function( __FUNCTION__, '3.7.0', 'new Plugin_Upgrader();' );

	if ( !empty($feedback) )
		add_filter('update_feedback', $feedback);

	require ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
	$upgrader = new Plugin_Upgrader();
	return $upgrader->upgrade($plugin);
}


Top ↑

Changelog

Changelog
VersionDescription
3.7.0Use Plugin_Upgrader
2.5.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.