diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index b056c92790..3165b77066 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -4398,7 +4398,10 @@ final class WP_Customize_Manager { $this->add_panel( new WP_Customize_Themes_Panel( $this, 'themes', array( 'title' => $this->theme()->display( 'Name' ), - 'description' => __( 'Once themes are installed, you can live-preview them on your site, customize them, and publish your new design. Browse available themes via the filters in this menu.' ), + 'description' => ( + '

' . __( 'Looking for a theme? You can search or browse the WordPress.org theme directory, install and preview themes, then activate them right here.' ) . '

' . + '

' . __( 'While previewing a new theme, you can continue to tailor things like widgets and menus, and explore theme-specific options.' ) . '

' + ), 'capability' => 'switch_themes', 'priority' => 0, ) ) ); diff --git a/wp-includes/version.php b/wp-includes/version.php index fdfe28415c..6dc2c91e01 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta1-41814'; +$wp_version = '4.9-beta1-41815'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.