diff --git a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
index 42fe89fb5f..6237a36080 100644
|
a
|
b
|
class TwentyNineteen_Walker_Comment extends Walker_Comment { |
| 33 | 33 | <footer class="comment-meta"> |
| 34 | 34 | <div class="comment-author vcard"> |
| 35 | 35 | <?php |
| 36 | | $comment_author_link = get_comment_author_link( $comment ); |
| 37 | | $comment_author_url = get_comment_author_url( $comment ); |
| 38 | | $comment_author = get_comment_author( $comment ); |
| 39 | | $avatar = get_avatar( $comment, $args['avatar_size'] ); |
| | 36 | $comment_author_url = get_comment_author_url( $comment ); |
| | 37 | $comment_author = get_comment_author( $comment ); |
| | 38 | $avatar = get_avatar( $comment, $args['avatar_size'] ); |
| 40 | 39 | if ( 0 != $args['avatar_size'] ) { |
| 41 | 40 | if ( empty( $comment_author_url ) ) { |
| 42 | 41 | echo $avatar; |
| … |
… |
class TwentyNineteen_Walker_Comment extends Walker_Comment { |
| 71 | 70 | ), |
| 72 | 71 | ) |
| 73 | 72 | ), |
| 74 | | '<b class="fn">' . get_comment_author_link( $comment ) . '</b>' |
| | 73 | '<b class="fn">' . $comment_author . '</b>' |
| 75 | 74 | ); |
| 76 | 75 | |
| 77 | 76 | if ( ! empty( $comment_author_url ) ) { |