diff --git a/wp-includes/theme.php b/wp-includes/theme.php index b2543639bc..43334865c2 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -739,15 +739,18 @@ function switch_theme( $stylesheet ) { } update_option( 'theme_switched', $old_theme->get_stylesheet() ); + /** * Fires after the theme is switched. * * @since 1.5.0 + * @since 4.5.0 Introduced the `$old_theme` parameter. * * @param string $new_name Name of the new theme. * @param WP_Theme $new_theme WP_Theme instance of the new theme. + * @param WP_Theme $old_theme WP_Theme instance of the old theme. */ - do_action( 'switch_theme', $new_name, $new_theme ); + do_action( 'switch_theme', $new_name, $new_theme, $old_theme ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 2ad2c00f5b..57b9e1b8ed 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36501'; +$wp_version = '4.5-alpha-36502'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.