mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-02 13:41:24 +01:00
Twenty Twenty-One: Use consistent HTML comments after closing HTML tags.
Follow-up to [45209] for other bundled themes. Props arcangelini, audrasjb. Fixes #51950. Built from https://develop.svn.wordpress.org/trunk@49761 git-svn-id: http://core.svn.wordpress.org/trunk@49484 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a4730c14ba
commit
2095631176
@ -99,7 +99,7 @@ while ( have_posts() ) {
|
|||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</footer><!-- .entry-footer -->
|
</footer><!-- .entry-footer -->
|
||||||
</article><!-- #post-## -->
|
</article><!-- #post-<?php the_ID(); ?> -->
|
||||||
<?php
|
<?php
|
||||||
// If comments are open or there is at least one comment, load up the comment template.
|
// If comments are open or there is at least one comment, load up the comment template.
|
||||||
if ( comments_open() || get_comments_number() ) {
|
if ( comments_open() || get_comments_number() ) {
|
||||||
|
@ -41,4 +41,4 @@
|
|||||||
<?php get_template_part( 'template-parts/post/author-bio' ); ?>
|
<?php get_template_part( 'template-parts/post/author-bio' ); ?>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
</article><!-- #post-${ID} -->
|
</article><!-- #post-<?php the_ID(); ?> -->
|
||||||
|
@ -43,4 +43,4 @@
|
|||||||
<footer class="entry-footer default-max-width">
|
<footer class="entry-footer default-max-width">
|
||||||
<?php twenty_twenty_one_entry_meta_footer(); ?>
|
<?php twenty_twenty_one_entry_meta_footer(); ?>
|
||||||
</footer><!-- .entry-footer -->
|
</footer><!-- .entry-footer -->
|
||||||
</article><!-- #post-${ID} -->
|
</article><!-- #post-<?php the_ID(); ?> -->
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.7-alpha-49759';
|
$wp_version = '5.7-alpha-49761';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user