diff --git a/src/wp-content/themes/twentytwentyone/image.php b/src/wp-content/themes/twentytwentyone/image.php
index e5ebfba33d..c691e18594 100644
|
a
|
b
|
while ( have_posts() ) { |
| 99 | 99 | } |
| 100 | 100 | ?> |
| 101 | 101 | </footer><!-- .entry-footer --> |
| 102 | | </article><!-- #post-## --> |
| | 102 | </article><!-- #post-<?php the_ID(); ?> --> |
| 103 | 103 | <?php |
| 104 | 104 | // If comments are open or there is at least one comment, load up the comment template. |
| 105 | 105 | if ( comments_open() || get_comments_number() ) { |
diff --git a/src/wp-content/themes/twentytwentyone/template-parts/content/content-single.php b/src/wp-content/themes/twentytwentyone/template-parts/content/content-single.php
index f6c97c9ca5..14ddb0f0c4 100644
|
a
|
b
|
|
| 41 | 41 | <?php get_template_part( 'template-parts/post/author-bio' ); ?> |
| 42 | 42 | <?php endif; ?> |
| 43 | 43 | |
| 44 | | </article><!-- #post-${ID} --> |
| | 44 | </article><!-- #post-<?php the_ID(); ?> --> |
diff --git a/src/wp-content/themes/twentytwentyone/template-parts/content/content.php b/src/wp-content/themes/twentytwentyone/template-parts/content/content.php
index 309f0bbeb6..0ee7d628ed 100644
|
a
|
b
|
|
| 43 | 43 | <footer class="entry-footer default-max-width"> |
| 44 | 44 | <?php twenty_twenty_one_entry_meta_footer(); ?> |
| 45 | 45 | </footer><!-- .entry-footer --> |
| 46 | | </article><!-- #post-${ID} --> |
| | 46 | </article><!-- #post-<?php the_ID(); ?> --> |