diff --git a/src/wp-content/themes/twentytwenty/comments.php b/src/wp-content/themes/twentytwenty/comments.php
index 3a435296c8..42ae15ad86 100644
a
|
b
|
if ( $comments ) { |
34 | 34 | _e( 'Leave a comment', 'twentytwenty' ); |
35 | 35 | } elseif ( '1' === $comments_number ) { |
36 | 36 | /* translators: %s: post title */ |
37 | | printf( _x( 'One reply on “%s”', 'comments title', 'twentytwenty' ), esc_html( get_the_title() ) ); |
| 37 | printf( _x( 'One reply on “%s”', 'comments title', 'twentytwenty' ), get_the_title() ); |
38 | 38 | } else { |
39 | 39 | echo sprintf( |
40 | 40 | /* translators: 1: number of comments, 2: post title */ |
… |
… |
if ( $comments ) { |
46 | 46 | 'twentytwenty' |
47 | 47 | ), |
48 | 48 | number_format_i18n( $comments_number ), |
49 | | esc_html( get_the_title() ) |
| 49 | get_the_title() |
50 | 50 | ); |
51 | 51 | } |
52 | 52 | |