diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php
index eb797373a1..626f8965bf 100644
--- a/wp-content/themes/twentytwelve/archive.php
+++ b/wp-content/themes/twentytwelve/archive.php
@@ -18,29 +18,38 @@ get_header(); ?>
-
' . get_the_date() . '' );
- } elseif ( is_month() ) {
- printf( __( 'Monthly Archives: %s', 'twentytwelve' ), '' . get_the_date( _x( 'F Y', 'monthly archives date format', 'twentytwelve' ) ) . '' );
- } elseif ( is_year() ) {
- printf( __( 'Yearly Archives: %s', 'twentytwelve' ), '' . get_the_date( _x( 'Y', 'yearly archives date format', 'twentytwelve' ) ) . '' );
- } elseif ( is_tag() ) {
- printf( __( 'Tag Archives: %s', 'twentytwelve' ), '' . single_tag_title( '', false ) . '' );
- // Show an optional tag description
- $tag_description = tag_description();
- if ( $tag_description )
- echo '
' . $tag_description . '
';
- } elseif ( is_category() ) {
- printf( __( 'Category Archives: %s', 'twentytwelve' ), '' . single_cat_title( '', false ) . '' );
- // Show an optional category description
- $category_description = category_description();
- if ( $category_description )
- echo '' . $category_description . '
';
- } else {
- _e( 'Blog Archives', 'twentytwelve' );
- }
- ?>
+
';
+ }
+ // Show an optional category description.
+ if ( is_category() ) {
+ $category_description = category_description();
+ if ( $category_description )
+ echo '' . $category_description . '
';
+ }
+ ?>
+