Changeset 44562 for trunk/src/wp-content/themes/twentythirteen/comments.php
- Timestamp:
- 01/11/2019 06:03:46 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/comments.php
r43571 r44562 24 24 <h2 class="comments-title"> 25 25 <?php 26 if ( 1 === get_comments_number() ) { 26 27 printf( 27 _nx( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ), 28 /* translators: %s: The post title. */ 29 _x( 'One thought on “%s”', 'comments title', 'twentythirteen' ), 30 '<span>' . get_the_title() . '</span>' 31 ); 32 } else { 33 printf( 34 /* translators: %1$s: The number of comments. %2$s: The post title. */ 35 _nx( '%1$s thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'comments title', 'twentythirteen' ), 28 36 number_format_i18n( get_comments_number() ), 29 37 '<span>' . get_the_title() . '</span>' 30 38 ); 39 } 31 40 ?> 32 41 </h2>
Note: See TracChangeset
for help on using the changeset viewer.