From fcc86be587f756f7a20becedddd6f8aef47913b4 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Fri, 8 Nov 2013 01:08:18 +0000 Subject: [PATCH] Twenty Fourteen: add brief inline help text for Featured Content controls in Customizer. See #25837. git-svn-id: https://develop.svn.wordpress.org/trunk@26045 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentyfourteen/inc/customizer.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentyfourteen/inc/customizer.php b/src/wp-content/themes/twentyfourteen/inc/customizer.php index 031aface34..8ff9a4ecec 100644 --- a/src/wp-content/themes/twentyfourteen/inc/customizer.php +++ b/src/wp-content/themes/twentyfourteen/inc/customizer.php @@ -39,8 +39,9 @@ function twentyfourteen_customize_register( $wp_customize ) { // Add the featured content section in case it's not already there. $wp_customize->add_section( 'featured_content', array( - 'title' => __( 'Featured Content', 'twentyfourteen' ), - 'priority' => 130, + 'title' => __( 'Featured Content', 'twentyfourteen' ), + 'description' => __( 'Easily feature all posts with the "featured" tag or a tag of your choice; if no posts match the tag, "sticky" posts will be displayed instead.', 'twentyfourteen' ), + 'priority' => 130, ) ); // Add the featured content layout setting and control.