diff --git a/wp-admin/includes/list-table-posts.php b/wp-admin/includes/list-table-posts.php index 42e1358c3f..9214162cf8 100644 --- a/wp-admin/includes/list-table-posts.php +++ b/wp-admin/includes/list-table-posts.php @@ -275,7 +275,7 @@ class WP_Posts_Table extends WP_List_Table { $posts_columns['tags'] = __( 'Tags' ); $post_status = !empty( $_REQUEST['post_status'] ) ? $_REQUEST['post_status'] : 'all'; if ( !in_array( $post_status, array( 'pending', 'draft', 'future' ) ) && ( empty( $post_type ) || post_type_supports( $post_type, 'comments' ) ) ) - $posts_columns['comments'] = '
Comments
'; + $posts_columns['comments'] = '
' . esc_attr__( 'Comments' ) . '
'; $posts_columns['date'] = __( 'Date' ); if ( 'page' == $post_type )