diff --git a/wp-content/themes/twentytwelve/archive.php b/wp-content/themes/twentytwelve/archive.php index 2bf1d2d2c0..eb797373a1 100644 --- a/wp-content/themes/twentytwelve/archive.php +++ b/wp-content/themes/twentytwelve/archive.php @@ -30,13 +30,13 @@ get_header(); ?> // Show an optional tag description $tag_description = tag_description(); if ( $tag_description ) - echo apply_filters( 'tag_archive_meta', '
' . $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 apply_filters( 'category_archive_meta', '
' . $category_description . '
' ); + echo '
' . $category_description . '
'; } else { _e( 'Blog Archives', 'twentytwelve' ); }