Make WordPress Core

Changeset 21976


Ignore:
Timestamp:
09/24/2012 06:33:09 PM (12 years ago)
Author:
lancewillett
Message:

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

Location:
trunk/wp-content/themes/twentytwelve
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentytwelve/archive.php

    r21618 r21976  
    3232                        printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' );
    3333                    } else {
    34                         _e( 'Blog Archives', 'twentytwelve' );
     34                        _e( ' Archives', 'twentytwelve' );
    3535                    }
    3636                ?></h1>
  • trunk/wp-content/themes/twentytwelve/functions.php

    r21975 r21976  
    152152        return $title;
    153153
    154     // Add the blog name.
     154    // Add the site name.
    155155    $title .= get_bloginfo( 'name' );
    156156
    157     // Add the blog description for the home/front page.
     157    // Add the site description for the home/front page.
    158158    $site_description = get_bloginfo( 'description', 'display' );
    159159    if ( $site_description && ( is_home() || is_front_page() ) )
Note: See TracChangeset for help on using the changeset viewer.