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.
See also
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); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.7.0 | Use Theme_Upgrader |
2.7.0 | Introduced. |