Ticket #30545: 30545-customizer-text.diff
File 30545-customizer-text.diff, 1.3 KB (added by , 11 years ago) |
---|
-
wp-content/themes/twentyfifteen/inc/customizer.php
49 49 50 50 $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'sidebar_textcolor', array( 51 51 'label' => esc_html__( 'Header and Sidebar Text Color', 'twentyfifteen' ), 52 'description' => esc_html__( ' Only applied to the sidebar on wider screens. On small screens the sidebar will become the header.', 'twentyfifteen' ),52 'description' => esc_html__( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ), 53 53 'section' => 'colors', 54 54 ) ) ); 55 55 … … 65 65 66 66 $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array( 67 67 'label' => esc_html__( 'Header and Sidebar Background Color', 'twentyfifteen' ), 68 'description' => esc_html__( ' Only applied to the sidebar on wider screens. On small screens the sidebar will become the header.', 'twentyfifteen' ),68 'description' => esc_html__( 'Applied to the header on small screens and the sidebar on wide screens.', 'twentyfifteen' ), 69 69 'section' => 'colors', 70 70 ) ) ); 71 71