Changeset 14688
- Timestamp:
- 05/16/2010 06:26:18 AM (15 years ago)
- Location:
- trunk/wp-content/themes/twentyten
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/category.php
r14549 r14688 18 18 ?></h1> 19 19 <?php 20 $categorydesc = category_description(); 21 if ( ! empty( $categorydesc ) ) { 22 echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $categorydesc . '</div>' ); 23 } 20 $category_description = category_description(); 21 if ( ! empty( $category_description ) ) 22 echo '<div class="archive-meta">' . $categorydesc . '</div>'; 24 23 ?> 25 24 -
trunk/wp-content/themes/twentyten/comments.php
r14433 r14688 30 30 <h3 id="comments-title"> 31 31 <?php 32 33 32 printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'twentyten' ), 33 number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' ); 34 34 ?> 35 35 </h3> 36 36 37 37 <?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
Note: See TracChangeset
for help on using the changeset viewer.