From 266f8fda03c22a0b17f8ea3efba2f4ac64f94727 Mon Sep 17 00:00:00 2001 From: Lance Willett Date: Mon, 24 Sep 2012 18:33:09 +0000 Subject: [PATCH] Twenty Twelve: remove the word "Blog" from archive title, see #21951. Also remove from two comments in functions.php. git-svn-id: https://develop.svn.wordpress.org/trunk@21976 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentytwelve/archive.php | 2 +- wp-content/themes/twentytwelve/functions.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php index 25d61bf318..534607b40f 100644 --- a/wp-content/themes/twentytwelve/archive.php +++ b/wp-content/themes/twentytwelve/archive.php @@ -31,7 +31,7 @@ get_header(); ?> } elseif ( is_category() ) { printf( __( 'Category Archives: %s', 'twentytwelve' ), '' . single_cat_title( '', false ) . '' ); } else { - _e( 'Blog Archives', 'twentytwelve' ); + _e( ' Archives', 'twentytwelve' ); } ?> diff --git a/wp-content/themes/twentytwelve/functions.php b/wp-content/themes/twentytwelve/functions.php index 7fd67d801b..dc3cd4eb76 100644 --- a/wp-content/themes/twentytwelve/functions.php +++ b/wp-content/themes/twentytwelve/functions.php @@ -151,10 +151,10 @@ function twentytwelve_wp_title( $title, $sep ) { if ( is_feed() ) return $title; - // Add the blog name. + // Add the site name. $title .= get_bloginfo( 'name' ); - // Add the blog description for the home/front page. + // Add the site description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) $title = "$title $sep $site_description";