Changeset 43892 for branches/5.0/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
- Timestamp:
- 11/12/2018 11:19:13 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.0/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
r43860 r43892 56 56 } 57 57 58 /* translators: %s: comment author link */59 58 printf( 59 /* translators: %s: comment author link */ 60 60 __( '%s <span class="screen-reader-text says">says:</span>', 'twentynineteen' ), 61 61 sprintf( '<span class="fn">%s</span>', $comment_author ) … … 70 70 <div class="comment-metadata"> 71 71 <a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> 72 <?php /* translators: 1: comment date, 2: comment time */ ?> 73 <time datetime="<?php comment_time( 'c' ); ?>" title="<?php printf( __( '%1$s at %2$s', 'twentynineteen' ), get_comment_date( '', $comment ), get_comment_time() ); ?>"> 74 <?php printf( __( '%1$s at %2$s', 'twentynineteen' ), get_comment_date( '', $comment ), get_comment_time() ); ?> 72 <?php 73 /* translators: 1: comment date, 2: comment time */ 74 $comment_timestamp = sprintf( __( '%1$s at %2$s', 'twentynineteen' ), get_comment_date( '', $comment ), get_comment_time() ); 75 ?> 76 <time datetime="<?php comment_time( 'c' ); ?>" title="<?php echo $comment_timestamp; ?>"> 77 <?php echo $comment_timestamp; ?> 75 78 </time> 76 79 </a>
Note: See TracChangeset
for help on using the changeset viewer.