Twenty Fourteen: add contextual help text to Background and Colors controls in Customizer, using the `description` field. Props rachelbaker, see #25869.

git-svn-id: https://develop.svn.wordpress.org/trunk@26038 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Lance Willett 2013-11-07 20:27:05 +00:00
parent daad8899b1
commit d3bd9f465c
1 changed files with 15 additions and 0 deletions

View File

@ -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',