Ticket #45424: 45424.17.patch
File 45424.17.patch, 3.0 KB (added by , 7 years ago) |
---|
-
src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php
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'] ); 40 if ( 0 != $args['avatar_size'] ) { 41 if ( empty( $comment_author_url ) ) { 42 echo $avatar; 43 } else { 44 printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url ); 45 echo $avatar; 46 } 47 } 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'] ); 48 40 49 /* 50 * Using the `check` icon instead of `check_circle`, since we can't add a 51 * fill color to the inner check shape when in circle form. 52 */ 53 if ( twentynineteen_is_comment_by_post_author( $comment ) ) { 54 /* translators: %s: SVG Icon */ 55 printf( '<span class="post-author-badge" aria-hidden="true">%s</span>', twentynineteen_get_icon_svg( 'check', 24 ) ); 41 if ( 0 != $args['avatar_size'] ) { 42 if ( empty( $comment_author_url ) ) { 43 echo $avatar; 44 } else { 45 printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url ); 46 echo $avatar; 56 47 } 48 } 57 49 58 printf( 59 /* translators: %s: comment author link */ 50 /* 51 * Using the `check` icon instead of `check_circle`, since we can't add a 52 * fill color to the inner check shape when in circle form. 53 */ 54 if ( twentynineteen_is_comment_by_post_author( $comment ) ) { 55 printf( '<span class="post-author-badge" aria-hidden="true">%s</span>', twentynineteen_get_icon_svg( 'check', 24 ) ); 56 } 57 58 printf( 59 /* translators: %s: comment author link */ 60 wp_kses( 60 61 __( '%s <span class="screen-reader-text says">says:</span>', 'twentynineteen' ), 61 sprintf( '<span class="fn">%s</span>', $comment_author ) 62 ); 62 array( 63 'span' => array( 64 'class' => array(), 65 ), 66 ) 67 ), 68 '<b class="fn">' . get_comment_author_link( $comment ) . '</b>' 69 ); 63 70 64 65 66 71 if ( ! empty( $comment_author_url ) ) { 72 echo '</a>'; 73 } 67 74 ?> 68 75 </div><!-- .comment-author --> 69 76 … … 110 117 ?> 111 118 <?php 112 119 } 113 114 120 }