430 | | <a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> |
431 | | <time datetime="<?php comment_time( 'c' ); ?>"> |
432 | | <?php |
433 | | /* translators: 1: Comment date, 2: Comment time. */ |
434 | | printf( __( '%1$s at %2$s' ), get_comment_date( '', $comment ), get_comment_time() ); |
435 | | ?> |
436 | | </time> |
437 | | </a> |
438 | | <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?> |
| 430 | <?php |
| 431 | printf( |
| 432 | '<a href="%s"><time datetime="%s">%s at %s</time></a>', |
| 433 | esc_url( get_comment_link( $comment, $args ) ), |
| 434 | get_the_time( 'c' ), |
| 435 | get_comment_date( '', $comment ), |
| 436 | get_comment_time() |
| 437 | ); |
| 438 | |
| 439 | edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); |
| 440 | ?> |