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
|
b
|
function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' )
|
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | $post_meta_wrapper_classes = ''; |
| 251 | | $post_meta_classes = ''; |
| 252 | 251 | |
| 253 | 252 | // Get the post meta settings for the location specified. |
| 254 | 253 | if ( 'single-top' === $location ) { |
| … |
… |
function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' )
|
| 316 | 315 | |
| 317 | 316 | <div class="post-meta-wrapper<?php echo esc_attr( $post_meta_wrapper_classes ); ?>"> |
| 318 | 317 | |
| 319 | | <ul class="post-meta<?php echo esc_attr( $post_meta_classes ); ?>"> |
| | 318 | <ul class="post-meta"> |
| 320 | 319 | |
| 321 | 320 | <?php |
| 322 | 321 | |
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
|
b
|
if ( is_singular() ) {
|
| 15 | 15 | |
| 16 | 16 | ?> |
| 17 | 17 | |
| 18 | | <header class="entry-header has-text-align-center<?php echo esc_attr( $entry_header_classes ); ?>"> |
| | 18 | <header class="entry-header has-text-align-center<?php echo $entry_header_classes; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output ?>"> |
| 19 | 19 | |
| 20 | 20 | <div class="entry-header-inner section-inner medium"> |
| 21 | 21 | |