Changeset 47122 for trunk/src/wp-content/themes/twentytwenty/comments.php
- Timestamp:
- 01/29/2020 12:43:23 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/comments.php
r47110 r47122 34 34 _e( 'Leave a comment', 'twentytwenty' ); 35 35 } elseif ( '1' === $comments_number ) { 36 /* translators: %s: post title*/36 /* translators: %s: Post title. */ 37 37 printf( _x( 'One reply on “%s”', 'comments title', 'twentytwenty' ), get_the_title() ); 38 38 } else { 39 39 printf( 40 /* translators: 1: number of comments, 2: post title*/40 /* translators: 1: Number of comments, 2: Post title. */ 41 41 _nx( 42 42 '%1$s reply on “%2$s”', … … 86 86 ?> 87 87 88 <nav class="comments-pagination pagination<?php echo $pagination_classes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output ?>" aria-label="<?php esc_attr_e( 'Comments', 'twentytwenty' ); ?>">88 <nav class="comments-pagination pagination<?php echo $pagination_classes; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output ?>" aria-label="<?php esc_attr_e( 'Comments', 'twentytwenty' ); ?>"> 89 89 <?php echo wp_kses_post( $comment_pagination ); ?> 90 90 </nav>
Note: See TracChangeset
for help on using the changeset viewer.