From 1015c3b3a07ad6b530bb3aed7e0e11549da791cb Mon Sep 17 00:00:00 2001 From: "David A. Kennedy" Date: Sat, 28 Jan 2017 00:25:42 +0000 Subject: [PATCH] Twenty Seventeen: Rename "Sidebar" widget area for clarity Renames the "Sidebar" widget area to "Blog Sidebar" and adjust its description to set better expectations for users as to where it appears in the theme. Props apmarshall Fixes #39567. Built from https://develop.svn.wordpress.org/trunk@40024 git-svn-id: http://core.svn.wordpress.org/trunk@39961 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyseventeen/functions.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentyseventeen/functions.php b/wp-content/themes/twentyseventeen/functions.php index faf317f476..a73d7c1494 100644 --- a/wp-content/themes/twentyseventeen/functions.php +++ b/wp-content/themes/twentyseventeen/functions.php @@ -312,9 +312,9 @@ add_filter( 'wp_resource_hints', 'twentyseventeen_resource_hints', 10, 2 ); */ function twentyseventeen_widgets_init() { register_sidebar( array( - 'name' => __( 'Sidebar', 'twentyseventeen' ), + 'name' => __( 'Blog Sidebar', 'twentyseventeen' ), 'id' => 'sidebar-1', - 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyseventeen' ), + 'description' => __( 'Add widgets here to appear in your sidebar on blog posts and archive pages.', 'twentyseventeen' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', diff --git a/wp-includes/version.php b/wp-includes/version.php index 23acf20f9e..80cfe6cf7a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8-alpha-40023'; +$wp_version = '4.8-alpha-40024'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.