diff --git a/wp-content/themes/twentytwenty/inc/template-tags.php b/wp-content/themes/twentytwenty/inc/template-tags.php
index d220875..979c39e 100644
--- a/wp-content/themes/twentytwenty/inc/template-tags.php
+++ b/wp-content/themes/twentytwenty/inc/template-tags.php
@@ -248,7 +248,6 @@ function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' )
 	}
 
 	$post_meta_wrapper_classes = '';
-	$post_meta_classes         = '';
 
 	// Get the post meta settings for the location specified.
 	if ( 'single-top' === $location ) {
@@ -316,7 +315,7 @@ function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' )
 
 		<div class="post-meta-wrapper<?php echo esc_attr( $post_meta_wrapper_classes ); ?>">
 
-			<ul class="post-meta<?php echo esc_attr( $post_meta_classes ); ?>">
+			<ul class="post-meta">
 
 				<?php
 
diff --git a/wp-content/themes/twentytwenty/template-parts/entry-header.php b/wp-content/themes/twentytwenty/template-parts/entry-header.php
index 1f68550..57aac3b 100644
--- a/wp-content/themes/twentytwenty/template-parts/entry-header.php
+++ b/wp-content/themes/twentytwenty/template-parts/entry-header.php
@@ -15,7 +15,7 @@ if ( is_singular() ) {
 
 ?>
 
-<header class="entry-header has-text-align-center<?php echo esc_attr( $entry_header_classes ); ?>">
+<header class="entry-header has-text-align-center<?php echo $entry_header_classes; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output ?>">
 
 	<div class="entry-header-inner section-inner medium">
 
