Make WordPress Core

Ticket #42047: 42047.0.diff

File 42047.0.diff, 1.0 KB (added by westonruter, 8 years ago)
  • src/wp-includes/class-wp-customize-manager.php

    diff --git src/wp-includes/class-wp-customize-manager.php src/wp-includes/class-wp-customize-manager.php
    index b056c92790..3165b77066 100644
    final class WP_Customize_Manager { 
    43984398
    43994399                $this->add_panel( new WP_Customize_Themes_Panel( $this, 'themes', array(
    44004400                        'title'       => $this->theme()->display( 'Name' ),
    4401                         '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.' ),
     4401                        'description' => (
     4402                                '<p>' . __( 'Looking for a theme? You can search or browse the WordPress.org theme directory, install and preview themes, then activate them right here.' ) . '</p>' .
     4403                                '<p>' . __( 'While previewing a new theme, you can continue to tailor things like widgets and menus, and explore theme-specific options.' ) . '</p>'
     4404                        ),
    44024405                        'capability'  => 'switch_themes',
    44034406                        'priority'    => 0,
    44044407                ) ) );