| | 22 | // Add custom description to colors section. |
| | 23 | $wp_customize->add_section( 'colors', array( |
| | 24 | 'title' => __( 'Colors', 'twentyfourteen' ), |
| | 25 | 'description' => __( 'Background may only be visible on wide screens.', 'twentyfourteen' ), |
| | 26 | 'priority' => 40, |
| | 27 | ) ); |
| | 28 | |
| | 29 | // Add custom description to background image section. |
| | 30 | $wp_customize->add_section( 'background_image', array( |
| | 31 | 'title' => __( 'Background Image', 'twentyfourteen' ), |
| | 32 | 'description' => __( 'Background may only be visible on wide screens.', 'twentyfourteen' ), |
| | 33 | 'theme_supports' => 'custom-background', |
| | 34 | 'priority' => 80, |
| | 35 | ) ); |
| | 36 | |