Changeset 21268 for trunk/wp-content/themes/twentytwelve/archive.php
- Timestamp:
- 07/13/2012 12:36:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/archive.php
r21261 r21268 31 31 $tag_description = tag_description(); 32 32 if ( $tag_description ) 33 echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' );33 echo '<div class="tag-archive-meta">' . $tag_description . '</div>'; 34 34 } elseif ( is_category() ) { 35 35 printf( __( 'Category Archives: %s', 'twentytwelve' ), '<span>' . single_cat_title( '', false ) . '</span>' ); … … 37 37 $category_description = category_description(); 38 38 if ( $category_description ) 39 echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' );39 echo '<div class="category-archive-meta">' . $category_description . '</div>'; 40 40 } else { 41 41 _e( 'Blog Archives', 'twentytwelve' );
Note: See TracChangeset
for help on using the changeset viewer.