From 23a18572b02457d1e167b980e22c0b8c1365532f Mon Sep 17 00:00:00 2001 From: Weston Ruter Date: Tue, 10 Oct 2017 20:52:50 +0000 Subject: [PATCH] Customize: Improve and clarify help text for Themes panel. Props michelleweber, melchoyce, celloexpressions. See #37661. Fixes #42047. git-svn-id: https://develop.svn.wordpress.org/trunk@41815 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-customize-manager.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-customize-manager.php b/src/wp-includes/class-wp-customize-manager.php index b056c92790..3165b77066 100644 --- a/src/wp-includes/class-wp-customize-manager.php +++ b/src/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, ) ) );