Twenty Twenty-One: Use consistent HTML comments after closing HTML tags.

Follow-up to [45209] for other bundled themes.

Props arcangelini, audrasjb.
Merges [49761] to the 5.6 branch.
Fixes #51950.
Built from https://develop.svn.wordpress.org/branches/5.6@49827


git-svn-id: http://core.svn.wordpress.org/branches/5.6@49546 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
desrosj 2020-12-17 15:03:07 +00:00
parent 0255d32689
commit fa8b856866
4 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ while ( have_posts() ) {
}
?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php
// If comments are open or there is at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {

View File

@ -41,4 +41,4 @@
<?php get_template_part( 'template-parts/post/author-bio' ); ?>
<?php endif; ?>
</article><!-- #post-${ID} -->
</article><!-- #post-<?php the_ID(); ?> -->

View File

@ -43,4 +43,4 @@
<footer class="entry-footer default-max-width">
<?php twenty_twenty_one_entry_meta_footer(); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-${ID} -->
</article><!-- #post-<?php the_ID(); ?> -->

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.6.1-alpha-49824';
$wp_version = '5.6.1-alpha-49827';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.