diff --git a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php index 1382d25e70..83a720a619 100644 --- a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php +++ b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php @@ -197,9 +197,15 @@ class TwentyNineteen_SVG_Icons { 'facebook.com', 'fb.me', ), + 'feed' => array( + 'feed', + ), 'google-plus' => array( 'plus.google.com', ), + 'mail' => array( + 'mailto:', + ), 'slideshare' => array( 'slideshare.net', ), 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 4e5068aff3..5d94fd7dac 100644 --- a/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php +++ b/src/wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php @@ -35,12 +35,14 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment { [^<]+%s<', $avatar ), $comment_author_link ); + printf( '', $comment_author_url ); + echo $avatar; } } @@ -56,8 +58,12 @@ class TwentyNineteen_Walker_Comment extends Walker_Comment { /* translators: %s: comment author link */ printf( __( '%s says:', 'twentynineteen' ), - sprintf( '%s', get_comment_author_link( $comment ) ) + sprintf( '%s', $comment_author ) ); + + if ( ! empty( $comment_author_url ) ) { + echo ''; + } ?> diff --git a/src/wp-content/themes/twentynineteen/comments.php b/src/wp-content/themes/twentynineteen/comments.php index 4b9ee6f892..3de9e0ea53 100644 --- a/src/wp-content/themes/twentynineteen/comments.php +++ b/src/wp-content/themes/twentynineteen/comments.php @@ -13,7 +13,7 @@ */ /* -If the current post is protected by a password and + * If the current post is protected by a password and * the visitor has not yet entered the password we will * return early without loading the comments. */ diff --git a/src/wp-content/themes/twentynineteen/footer.php b/src/wp-content/themes/twentynineteen/footer.php index 514a06faf7..9ceb729582 100644 --- a/src/wp-content/themes/twentynineteen/footer.php +++ b/src/wp-content/themes/twentynineteen/footer.php @@ -18,11 +18,15 @@