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:
parent
d7cbb45914
commit
56de945e68
|
@ -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>
|
||||
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue