diff --git src/wp-content/themes/twentynineteen/comments.php src/wp-content/themes/twentynineteen/comments.php
index 9ef3fd6acc..4fc853ec02 100644
|
|
|
$discussion = twentynineteen_get_discussion_data(); |
| 89 | 89 | if ( have_comments() ) : |
| 90 | 90 | $prev_icon = twentynineteen_get_icon_svg( 'chevron_left', 22 ); |
| 91 | 91 | $next_icon = twentynineteen_get_icon_svg( 'chevron_right', 22 ); |
| 92 | | $comments_text = __( 'Comments', 'twentynineteen' ); |
| 93 | 92 | the_comments_navigation( |
| 94 | 93 | array( |
| 95 | 94 | 'prev_text' => sprintf( '%s <span class="nav-prev-text"><span class="primary-text">%s</span> <span class="secondary-text">%s</span></span>', $prev_icon, __( 'Previous', 'twentynineteen' ), __( 'Comments', 'twentynineteen' ) ), |
diff --git src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php
index eb927ec938..e876a271de 100644
|
|
|
if ( ! class_exists( 'TwentyTwenty_Walker_Page' ) ) { |
| 38 | 38 | |
| 39 | 39 | if ( isset( $args['item_spacing'] ) && 'preserve' === $args['item_spacing'] ) { |
| 40 | 40 | $t = "\t"; |
| 41 | | $n = "\n"; |
| 42 | 41 | } else { |
| 43 | 42 | $t = ''; |
| 44 | | $n = ''; |
| 45 | 43 | } |
| 46 | 44 | if ( $depth ) { |
| 47 | 45 | $indent = str_repeat( $t, $depth ); |
diff --git src/wp-content/themes/twentytwenty/inc/template-tags.php src/wp-content/themes/twentytwenty/inc/template-tags.php
index 858ecc1631..2511746dc0 100644
|
|
|
function twentytwenty_get_post_meta( $post_id = null, $location = 'single-top' ) |
| 329 | 329 | // Make sure we don't output an empty container. |
| 330 | 330 | $has_meta = false; |
| 331 | 331 | |
| 332 | | global $post; |
| 333 | 332 | $the_post = get_post( $post_id ); |
| 334 | 333 | setup_postdata( $the_post ); |
| 335 | 334 | |