Twenty Twelve: remove the word "Blog" from archive title, see #21951. Also remove from two comments in functions.php.

git-svn-id: http://core.svn.wordpress.org/trunk@21976 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Lance Willett 2012-09-24 18:33:09 +00:00
parent 339b82058b
commit a5f428118d
2 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ get_header(); ?>
} elseif ( is_category() ) {
printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
} else {
_e( 'Blog Archives', 'twentytwelve' );
_e( ' Archives', 'twentytwelve' );
}
?></h1>

View File

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