Make WordPress Core

Ticket #46871: 46871.diff

File 46871.diff, 3.3 KB (added by iamdmitrymayorov, 7 years ago)
  • src/wp-content/themes/twentynineteen/header.php

    diff --git a/src/wp-content/themes/twentynineteen/header.php b/src/wp-content/themes/twentynineteen/header.php
    index 868a521944..b960fd4a99 100644
    a b  
    2828
    2929                        <div class="site-branding-container">
    3030                                <?php get_template_part( 'template-parts/header/site', 'branding' ); ?>
    31                         </div><!-- .layout-wrap -->
     31                        </div><!-- .site-branding-container -->
    3232
    3333                        <?php if ( is_singular() && twentynineteen_can_show_post_thumbnail() ) : ?>
    3434                                <div class="site-featured-image">
  • src/wp-content/themes/twentynineteen/image.php

    diff --git a/src/wp-content/themes/twentynineteen/image.php b/src/wp-content/themes/twentynineteen/image.php
    index c27e26f6bb..000983ce74 100644
    a b get_header(); 
    7878                                                <?php twentynineteen_entry_footer(); ?>
    7979
    8080                                        </footer><!-- .entry-footer -->
    81                                 </article><!-- #post-## -->
     81                                </article><!-- #post-<?php the_ID(); ?> -->
    8282
    8383                                <?php
    8484                                // Parent post navigation.
  • src/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php

    diff --git a/src/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php b/src/wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php
    index 98b0761ebb..a76edb02ed 100644
    a b  
    3030        <footer class="entry-footer">
    3131                <?php twentynineteen_entry_footer(); ?>
    3232        </footer><!-- .entry-footer -->
    33 </article><!-- #post-${ID} -->
     33</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentynineteen/template-parts/content/content-single.php

    diff --git a/src/wp-content/themes/twentynineteen/template-parts/content/content-single.php b/src/wp-content/themes/twentynineteen/template-parts/content/content-single.php
    index 720a253539..2e654dbcf9 100644
    a b  
    5252                <?php get_template_part( 'template-parts/post/author', 'bio' ); ?>
    5353        <?php endif; ?>
    5454
    55 </article><!-- #post-${ID} -->
     55</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentynineteen/template-parts/content/content.php

    diff --git a/src/wp-content/themes/twentynineteen/template-parts/content/content.php b/src/wp-content/themes/twentynineteen/template-parts/content/content.php
    index 85ec63287d..befcbda7f6 100644
    a b  
    5656        <footer class="entry-footer">
    5757                <?php twentynineteen_entry_footer(); ?>
    5858        </footer><!-- .entry-footer -->
    59 </article><!-- #post-${ID} -->
     59</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentynineteen/template-parts/header/entry-header.php

    diff --git a/src/wp-content/themes/twentynineteen/template-parts/header/entry-header.php b/src/wp-content/themes/twentynineteen/template-parts/header/entry-header.php
    index 9a72cbfdca..b23ad31d73 100644
    a b $discussion = ! is_page() && twentynineteen_can_show_post_thumbnail() ? twentyni 
    4242                        '</span>'
    4343                );
    4444        ?>
    45 </div><!-- .meta-info -->
     45</div><!-- .entry-meta -->
    4646<?php endif; ?>