Theme_Upgrader::current_after( bool|WP_Error $return, array $theme )
Turn off maintenance mode after upgrading the current theme.
Description
Hooked to the ‘upgrader_post_install’ filter by Theme_Upgrader::upgrade() and Theme_Upgrader::bulk_upgrade().
Parameters
- $return
-
(Required)
- $theme
-
(Required)
Return
(bool|WP_Error)
Source
File: wp-admin/includes/class-theme-upgrader.php
public function current_after($return, $theme) {
if ( is_wp_error($return) )
return $return;
$theme = isset($theme['theme']) ? $theme['theme'] : '';
if ( $theme != get_stylesheet() ) // If not current
return $return;
// Ensure stylesheet name hasn't changed after the upgrade:
if ( $theme == get_stylesheet() && $theme != $this->result['destination_name'] ) {
wp_clean_themes_cache();
$stylesheet = $this->result['destination_name'];
switch_theme( $stylesheet );
}
//Time to remove maintenance mode
if ( ! $this->bulk )
$this->maintenance_mode(false);
return $return;
}
Changelog
Version | Description |
---|---|
WP-2.8.0 | Introduced. |