From ab0a5f6c72726e6e6f401128b2c84c5de9b8e418 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Fri, 22 Feb 2013 17:32:48 +0000 Subject: [PATCH] Twenty Ten: add helpful descriptions to sidebars. Fixes #15401. git-svn-id: https://develop.svn.wordpress.org/trunk@23477 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentyten/functions.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index 67be12ccd5..ea5f8c5244 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -383,7 +383,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'Primary Widget Area', 'twentyten' ), 'id' => 'primary-widget-area', - 'description' => __( 'The primary widget area', 'twentyten' ), + 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', @@ -394,7 +394,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'Secondary Widget Area', 'twentyten' ), 'id' => 'secondary-widget-area', - 'description' => __( 'The secondary widget area', 'twentyten' ), + 'description' => __( 'An optional secondary widget area, displays below the primary widget area in your sidebar.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', @@ -405,7 +405,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'First Footer Widget Area', 'twentyten' ), 'id' => 'first-footer-widget-area', - 'description' => __( 'The first footer widget area', 'twentyten' ), + 'description' => __( 'An optional widget area for your site footer.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', @@ -416,7 +416,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'Second Footer Widget Area', 'twentyten' ), 'id' => 'second-footer-widget-area', - 'description' => __( 'The second footer widget area', 'twentyten' ), + 'description' => __( 'An optional widget area for your site footer.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', @@ -427,7 +427,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'Third Footer Widget Area', 'twentyten' ), 'id' => 'third-footer-widget-area', - 'description' => __( 'The third footer widget area', 'twentyten' ), + 'description' => __( 'An optional widget area for your site footer.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ', @@ -438,7 +438,7 @@ function twentyten_widgets_init() { register_sidebar( array( 'name' => __( 'Fourth Footer Widget Area', 'twentyten' ), 'id' => 'fourth-footer-widget-area', - 'description' => __( 'The fourth footer widget area', 'twentyten' ), + 'description' => __( 'An optional widget area for your site footer.', 'twentyten' ), 'before_widget' => '
  • ', 'after_widget' => '
  • ', 'before_title' => '

    ',