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";