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

wp_update_theme() WordPress Function

The wp_update_theme() function is used to update the WordPress database with new information from a theme. It is used when a theme is first installed, and when a theme is updated. It takes two arguments: the first is the theme object, and the second is an array of data to be updated.

wp_update_theme( $theme,  $feedback = '' ) #

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


Description

Deprecated in favor of instantiating a Theme_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_theme($theme, $feedback = '') {
	_deprecated_function( __FUNCTION__, '3.7.0', 'new Theme_Upgrader();' );

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

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


Top ↑

Changelog

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