Changeset 43571 for trunk/src/wp-content/themes/twentyeleven/comments.php
- Timestamp:
- 08/17/2018 01:50:26 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/comments.php
r42343 r43571 17 17 <p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyeleven' ); ?></p> 18 18 </div><!-- #comments --> 19 <?php19 <?php 20 20 /* 21 21 * Stop the rest of comments.php from being processed, … … 25 25 return; 26 26 endif; 27 27 ?> 28 28 29 29 <?php // You can start editing here -- including this comment! ?> … … 34 34 printf( 35 35 _n( 'One thought on “%2$s”', '%1$s thoughts on “%2$s”', get_comments_number(), 'twentyeleven' ), 36 number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' 36 number_format_i18n( get_comments_number() ), 37 '<span>' . get_the_title() . '</span>' 37 38 ); 38 39 ?> … … 74 75 */ 75 76 if ( ! comments_open() && get_comments_number() ) : 76 ?>77 ?> 77 78 <p class="nocomments"><?php _e( 'Comments are closed.', 'twentyeleven' ); ?></p> 78 79 <?php endif; ?>
Note: See TracChangeset
for help on using the changeset viewer.