diff --git a/src/wp-content/themes/twentyfourteen/inc/customizer.php b/src/wp-content/themes/twentyfourteen/inc/customizer.php index d7043df954..4a453b65c2 100644 --- a/src/wp-content/themes/twentyfourteen/inc/customizer.php +++ b/src/wp-content/themes/twentyfourteen/inc/customizer.php @@ -19,6 +19,21 @@ function twentyfourteen_customize_register( $wp_customize ) { $wp_customize->get_setting( 'blogname' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; + // Add custom description to colors section. + $wp_customize->add_section( 'colors', array( + 'title' => __( 'Colors', 'twentyfourteen' ), + 'description' => __( 'Background may only be visible on wide screens.', 'twentyfourteen' ), + 'priority' => 40, + ) ); + + // Add custom description to background image section. + $wp_customize->add_section( 'background_image', array( + 'title' => __( 'Background Image', 'twentyfourteen' ), + 'description' => __( 'Background may only be visible on wide screens.', 'twentyfourteen' ), + 'theme_supports' => 'custom-background', + 'priority' => 80, + ) ); + // Add the custom accent color setting and control. $wp_customize->add_setting( 'accent_color', array( 'default' => '#24890d',