Make WordPress Core


Ignore:
Timestamp:
10/15/2014 05:20:34 PM (10 years ago)
Author:
ocean90
Message:

Customizer: Change instances of "Theme Customizer" to just "Customizer", as the Customizer isn't necessarily theme-specific.

Also capitalize "Customizer".
See also https://make.wordpress.org/core/2014/07/08/customizer-improvements-in-4-0/.

props studionashvegas, tareq1988.
fixes #29947.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/customize.php

    r29610 r29903  
    130130        ?>
    131131
    132         <div id="widgets-right"><!-- For Widget Customizer, many widgets try to look for instances under div#widgets-right, so we have to add that ID to a container div in the customizer for compat -->
     132        <div id="widgets-right"><!-- For Widget Customizer, many widgets try to look for instances under div#widgets-right, so we have to add that ID to a container div in the Customizer for compat -->
    133133        <div class="wp-full-overlay-sidebar-content accordion-container" tabindex="-1">
    134134            <div id="customize-info" class="accordion-section <?php if ( $cannot_expand ) echo ' cannot-expand'; ?>">
    135                 <div class="accordion-section-title" aria-label="<?php esc_attr_e( 'Theme Customizer Options' ); ?>" tabindex="0">
     135                <div class="accordion-section-title" aria-label="<?php esc_attr_e( 'Customizer Options' ); ?>" tabindex="0">
    136136                    <span class="preview-notice"><?php
    137137                        if ( ! $wp_customize->is_theme_active() ) {
     
    190190    /*
    191191     * If the frontend and the admin are served from the same domain, load the
    192      * preview over ssl if the customizer is being loaded over ssl. This avoids
     192     * preview over ssl if the Customizer is being loaded over ssl. This avoids
    193193     * insecure content warnings. This is not attempted if the admin and frontend
    194194     * are on different domains to avoid the case where the frontend doesn't have
     
    227227    ), wp_login_url() );
    228228
    229     // Prepare customizer settings to pass to Javascript.
     229    // Prepare Customizer settings to pass to Javascript.
    230230    $settings = array(
    231231        'theme'    => array(
Note: See TracChangeset for help on using the changeset viewer.