Changeset 18058
- Timestamp:
- 05/26/2011 07:10:30 PM (13 years ago)
- Location:
- trunk/wp-content/themes/twentyeleven
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/category.php
r17959 r18058 18 18 ?></h1> 19 19 20 <?php $categorydesc = category_description(); if ( ! empty( $categorydesc ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); ?> 20 <?php 21 $category_description = category_description(); 22 if ( ! empty( $category_description ) ) 23 echo apply_filters( 'category_archive_meta', '<div class="category-archive-meta">' . $category_description . '</div>' ); 24 ?> 21 25 </header> 22 26 -
trunk/wp-content/themes/twentyeleven/tag.php
r17959 r18058 19 19 printf( __( 'Tag Archives: %s', 'twentyeleven' ), '<span>' . single_tag_title( '', false ) . '</span>' ); 20 20 ?></h1> 21 22 <?php 23 $tag_description = tag_description(); 24 if ( ! empty( $tag_description ) ) 25 echo apply_filters( 'tag_archive_meta', '<div class="tag-archive-meta">' . $tag_description . '</div>' ); 26 ?> 21 27 </header> 22 28
Note: See TracChangeset
for help on using the changeset viewer.