Make WordPress Core

Ticket #30165: 30165.2.diff

File 30165.2.diff, 1.4 KB (added by iamtakashi, 11 years ago)

Also remove the ampersands.

  • src/wp-content/themes/twentyfifteen/inc/customizer.php

     
    4242        ) );
    4343
    4444        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'sidebar_textcolor', array(
    45                 'label'   => esc_html__( 'Header & Sidebar Text Color', 'twentyfifteen' ),
    46                 'section' => 'colors',
     45                'label'       => esc_html__( 'Header and Sidebar Text Color', 'twentyfifteen' ),
     46                'description' => esc_html__( 'May only be applied to the sidebar on wider screens.', 'twentyfifteen' ),
     47                'section'     => 'colors',
    4748        ) ) );
    4849
    4950        // Remove the core header textcolor control, as it shares the sidebar text color.
     
    5657        ) );
    5758
    5859        $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array(
    59                 'label'   => esc_html__( 'Header & Sidebar Background Color', 'twentyfifteen' ),
    60                 'section' => 'colors',
     60                'label'       => esc_html__( 'Header and Sidebar Background Color', 'twentyfifteen' ),
     61                'description' => esc_html__( 'May only be applied to the sidebar on wider screens.', 'twentyfifteen' ),
     62                'section'     => 'colors',
    6163        ) ) );
    6264}
    6365add_action( 'customize_register', 'twentyfifteen_customize_register', 11 );