From 1d0bce8013ca4ed5835fa50f5d676e767053edc8 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Sun, 24 Nov 2013 16:57:10 +0000 Subject: [PATCH] Twenty Fourteen: update Customizer inline help text. Props siobhan, see #25837. Built from https://develop.svn.wordpress.org/trunk@26361 git-svn-id: http://core.svn.wordpress.org/trunk@26262 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyfourteen/inc/customizer.php | 2 +- wp-content/themes/twentyfourteen/inc/featured-content.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-content/themes/twentyfourteen/inc/customizer.php b/wp-content/themes/twentyfourteen/inc/customizer.php index 3a35d94c63..6eca814130 100644 --- a/wp-content/themes/twentyfourteen/inc/customizer.php +++ b/wp-content/themes/twentyfourteen/inc/customizer.php @@ -40,7 +40,7 @@ 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' ), - 'description' => sprintf( __( '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' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ), + 'description' => sprintf( __( 'Use a tag to feature your posts. If no posts match the tag, sticky posts will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ), 'priority' => 130, ) ); diff --git a/wp-content/themes/twentyfourteen/inc/featured-content.php b/wp-content/themes/twentyfourteen/inc/featured-content.php index 7ac0249602..8e6e2a239a 100644 --- a/wp-content/themes/twentyfourteen/inc/featured-content.php +++ b/wp-content/themes/twentyfourteen/inc/featured-content.php @@ -352,7 +352,7 @@ class Featured_Content { public static function customize_register( $wp_customize ) { $wp_customize->add_section( 'featured_content', array( 'title' => __( 'Featured Content', 'twentyfourteen' ), - 'description' => sprintf( __( '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' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ), + 'description' => sprintf( __( 'Use the "featured" tag to feature your posts. You can change this to a tag of your choice; if no posts match the tag, sticky posts will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ), 'priority' => 130, 'theme_supports' => 'featured-content', ) ); @@ -371,12 +371,12 @@ class Featured_Content { // Add Featured Content controls. $wp_customize->add_control( 'featured-content[tag-name]', array( - 'label' => __( 'Tag name', 'twentyfourteen' ), + 'label' => __( 'Tag Name', 'twentyfourteen' ), 'section' => 'featured_content', 'priority' => 20, ) ); $wp_customize->add_control( 'featured-content[hide-tag]', array( - 'label' => __( 'Hide tag from displaying in post meta and tag clouds.', 'twentyfourteen' ), + 'label' => __( 'Don’t display tag on front end.', 'twentyfourteen' ), 'section' => 'featured_content', 'type' => 'checkbox', 'priority' => 30,