Make WordPress Core

Ticket #46871: 46871.2.diff

File 46871.2.diff, 22.8 KB (added by iamdmitrymayorov, 7 years ago)

Fixes the same issue in other default themes.

  • src/wp-content/themes/twentyfifteen/content-link.php

    diff --git a/src/wp-content/themes/twentyfifteen/content-link.php b/src/wp-content/themes/twentyfifteen/content-link.php
    index f9a3199771..023e0d6d37 100644
    a b  
    6161        </footer>
    6262        <!-- .entry-footer -->
    6363
    64 </article><!-- #post-## -->
     64</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfifteen/content-page.php

    diff --git a/src/wp-content/themes/twentyfifteen/content-page.php b/src/wp-content/themes/twentyfifteen/content-page.php
    index 5b9e796c03..9651518e14 100644
    a b  
    3636
    3737        <?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<footer class="entry-footer"><span class="edit-link">', '</span></footer><!-- .entry-footer -->' ); ?>
    3838
    39 </article><!-- #post-## -->
     39</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfifteen/content-search.php

    diff --git a/src/wp-content/themes/twentyfifteen/content-search.php b/src/wp-content/themes/twentyfifteen/content-search.php
    index faa79f50b0..f8091ce6b2 100644
    a b  
    3434
    3535        <?php endif; ?>
    3636
    37 </article><!-- #post-## -->
     37</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfifteen/content.php

    diff --git a/src/wp-content/themes/twentyfifteen/content.php b/src/wp-content/themes/twentyfifteen/content.php
    index 1ac377af47..13799fb0b9 100644
    a b  
    6161                <?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
    6262        </footer><!-- .entry-footer -->
    6363
    64 </article><!-- #post-## -->
     64</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfifteen/image.php

    diff --git a/src/wp-content/themes/twentyfifteen/image.php b/src/wp-content/themes/twentyfifteen/image.php
    index 5afa773f49..3eb25b3fb3 100644
    a b get_header(); ?> 
    7474                                                <?php edit_post_link( __( 'Edit', 'twentyfifteen' ), '<span class="edit-link">', '</span>' ); ?>
    7575                                        </footer><!-- .entry-footer -->
    7676
    77                                 </article><!-- #post-## -->
     77                                </article><!-- #post-<?php the_ID(); ?> -->
    7878
    7979                                <?php
    8080                                // If comments are open or we have at least one comment, load up the comment template
  • src/wp-content/themes/twentyfourteen/content-aside.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-aside.php b/src/wp-content/themes/twentyfourteen/content-aside.php
    index 3fd3acda6e..b180826dc8 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-audio.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-audio.php b/src/wp-content/themes/twentyfourteen/content-audio.php
    index 4dba002a26..36aa5a9d28 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-featured-post.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-featured-post.php b/src/wp-content/themes/twentyfourteen/content-featured-post.php
    index d5a16fef20..707b957029 100644
    a b  
    3131
    3232                <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
    3333        </header><!-- .entry-header -->
    34 </article><!-- #post-## -->
     34</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-gallery.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-gallery.php b/src/wp-content/themes/twentyfourteen/content-gallery.php
    index 9ecdfbf92d..2f793a8efc 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-image.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-image.php b/src/wp-content/themes/twentyfourteen/content-image.php
    index 911ef23964..5e58bf0097 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-link.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-link.php b/src/wp-content/themes/twentyfourteen/content-link.php
    index 9ad0810206..d4c7c8bdfa 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-page.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-page.php b/src/wp-content/themes/twentyfourteen/content-page.php
    index ca8ebd9bb4..5a42117ee0 100644
    a b  
    3030                        edit_post_link( __( 'Edit', 'twentyfourteen' ), '<span class="edit-link">', '</span>' );
    3131                        ?>
    3232        </div><!-- .entry-content -->
    33 </article><!-- #post-## -->
     33</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-quote.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-quote.php b/src/wp-content/themes/twentyfourteen/content-quote.php
    index 703190878e..29e6ec37be 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content-video.php

    diff --git a/src/wp-content/themes/twentyfourteen/content-video.php b/src/wp-content/themes/twentyfourteen/content-video.php
    index c13d67009c..1c1a0efb08 100644
    a b  
    6363        </div><!-- .entry-content -->
    6464
    6565        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    66 </article><!-- #post-## -->
     66</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/content.php

    diff --git a/src/wp-content/themes/twentyfourteen/content.php b/src/wp-content/themes/twentyfourteen/content.php
    index 367cf337e9..bf05363359 100644
    a b  
    7373        <?php endif; ?>
    7474
    7575        <?php the_tags( '<footer class="entry-meta"><span class="tag-links">', '', '</span></footer>' ); ?>
    76 </article><!-- #post-## -->
     76</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyfourteen/image.php

    diff --git a/src/wp-content/themes/twentyfourteen/image.php b/src/wp-content/themes/twentyfourteen/image.php
    index f0af8b83bd..eb4a1658d0 100644
    a b get_header(); 
    6161                                        );
    6262                                ?>
    6363                                </div><!-- .entry-content -->
    64                         </article><!-- #post-## -->
     64                        </article><!-- #post-<?php the_ID(); ?> -->
    6565
    6666                        <nav id="image-navigation" class="navigation image-navigation">
    6767                                <div class="nav-links">
  • src/wp-content/themes/twentyfourteen/inc/widgets.php

    diff --git a/src/wp-content/themes/twentyfourteen/inc/widgets.php b/src/wp-content/themes/twentyfourteen/inc/widgets.php
    index 7ddabec386..0b99fe2adb 100644
    a b class Twenty_Fourteen_Ephemera_Widget extends WP_Widget { 
    226226                                                        <?php endif; ?>
    227227                                                </div><!-- .entry-meta -->
    228228                                        </header><!-- .entry-header -->
    229                                 </article><!-- #post-## -->
     229                                </article><!-- #post-<?php the_ID(); ?> -->
    230230                                </li>
    231231                                <?php endwhile; ?>
    232232
  • src/wp-content/themes/twentyfourteen/page-templates/contributors.php

    diff --git a/src/wp-content/themes/twentyfourteen/page-templates/contributors.php b/src/wp-content/themes/twentyfourteen/page-templates/contributors.php
    index 6b1d19dbff..635a259c27 100644
    a b if ( is_front_page() && twentyfourteen_has_featured_posts() ) { 
    3535
    3636                                edit_post_link( __( 'Edit', 'twentyfourteen' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' );
    3737                                ?>
    38                         </article><!-- #post-## -->
     38                        </article><!-- #post-<?php the_ID(); ?> -->
    3939
    4040                                <?php
    4141                                // If comments are open or we have at least one comment, load up the comment template.
  • 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; ?>
  • src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php b/src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page-panels.php
    index b1bf883926..98b129d314 100644
    a b global $twentyseventeencounter; 
    8484                </div><!-- .wrap -->
    8585        </div><!-- .panel-content -->
    8686
    87 </article><!-- #post-## -->
     87</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php b/src/wp-content/themes/twentyseventeen/template-parts/page/content-front-page.php
    index 3b321a5bba..aa6e2846bf 100644
    a b  
    4949                </div><!-- .wrap -->
    5050        </div><!-- .panel-content -->
    5151
    52 </article><!-- #post-## -->
     52</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/page/content-page.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/page/content-page.php b/src/wp-content/themes/twentyseventeen/template-parts/page/content-page.php
    index 162bc36598..f85ebc8c6f 100644
    a b  
    2929                        );
    3030                        ?>
    3131        </div><!-- .entry-content -->
    32 </article><!-- #post-## -->
     32</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php
    index 95f317271d..bfa3e19c7b 100644
    a b  
    106106        }
    107107        ?>
    108108
    109 </article><!-- #post-## -->
     109</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content-excerpt.php
    index 3e5ee546e1..54a493392e 100644
    a b  
    4545                <?php the_excerpt(); ?>
    4646        </div><!-- .entry-summary -->
    4747
    48 </article><!-- #post-## -->
     48</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php
    index ac525a7558..b171ecdcce 100644
    a b  
    9393        }
    9494        ?>
    9595
    96 </article><!-- #post-## -->
     96</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-image.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content-image.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content-image.php
    index 911a8a8666..12cd4e272c 100644
    a b  
    8383        }
    8484        ?>
    8585
    86 </article><!-- #post-## -->
     86</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php
    index 72de975a7b..9f80aeae20 100644
    a b  
    104104        }
    105105        ?>
    106106
    107 </article><!-- #post-## -->
     107</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyseventeen/template-parts/post/content.php

    diff --git a/src/wp-content/themes/twentyseventeen/template-parts/post/content.php b/src/wp-content/themes/twentyseventeen/template-parts/post/content.php
    index 4e59e09f9d..3c55aa164f 100644
    a b  
    7676        }
    7777        ?>
    7878
    79 </article><!-- #post-## -->
     79</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentysixteen/image.php

    diff --git a/src/wp-content/themes/twentysixteen/image.php b/src/wp-content/themes/twentysixteen/image.php
    index 5fcbb90155..ea64a14601 100644
    a b get_header(); ?> 
    9393                                                );
    9494                                                ?>
    9595                                        </footer><!-- .entry-footer -->
    96                                 </article><!-- #post-## -->
     96                                </article><!-- #post-<?php the_ID(); ?> -->
    9797
    9898                                <?php
    9999                                // If comments are open or we have at least one comment, load up the comment template.
  • src/wp-content/themes/twentysixteen/template-parts/content-page.php

    diff --git a/src/wp-content/themes/twentysixteen/template-parts/content-page.php b/src/wp-content/themes/twentysixteen/template-parts/content-page.php
    index d1ee87c629..689972c0cc 100644
    a b  
    4444                );
    4545                ?>
    4646
    47 </article><!-- #post-## -->
     47</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentysixteen/template-parts/content-search.php

    diff --git a/src/wp-content/themes/twentysixteen/template-parts/content-search.php b/src/wp-content/themes/twentysixteen/template-parts/content-search.php
    index c4667c6beb..7d587f65af 100644
    a b  
    4949                ?>
    5050
    5151        <?php endif; ?>
    52 </article><!-- #post-## -->
     52</article><!-- #post-<?php the_ID(); ?> -->
    5353
  • src/wp-content/themes/twentysixteen/template-parts/content-single.php

    diff --git a/src/wp-content/themes/twentysixteen/template-parts/content-single.php b/src/wp-content/themes/twentysixteen/template-parts/content-single.php
    index d1061b27d2..23e18373d2 100644
    a b  
    5252                        );
    5353                        ?>
    5454        </footer><!-- .entry-footer -->
    55 </article><!-- #post-## -->
     55</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentysixteen/template-parts/content.php

    diff --git a/src/wp-content/themes/twentysixteen/template-parts/content.php b/src/wp-content/themes/twentysixteen/template-parts/content.php
    index cf88417f98..03b4cfb6c7 100644
    a b  
    5858                        );
    5959                        ?>
    6060        </footer><!-- .entry-footer -->
    61 </article><!-- #post-## -->
     61</article><!-- #post-<?php the_ID(); ?> -->
  • src/wp-content/themes/twentyten/loop-attachment.php

    diff --git a/src/wp-content/themes/twentyten/loop-attachment.php b/src/wp-content/themes/twentyten/loop-attachment.php
    index a94084f4e6..72ae511070 100644
    a b if ( have_posts() ) { 
    164164                                                <?php twentyten_posted_in(); ?>
    165165                                                <?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
    166166                                        </div><!-- .entry-utility -->
    167                                 </div><!-- #post-## -->
     167                                </div><!-- #post-<?php the_ID(); ?> -->
    168168
    169169                <?php comments_template(); ?>
    170170
  • src/wp-content/themes/twentyten/loop-page.php

    diff --git a/src/wp-content/themes/twentyten/loop-page.php b/src/wp-content/themes/twentyten/loop-page.php
    index aab5b5b0a1..988512baae 100644
    a b if ( have_posts() ) { 
    4040                                                ?>
    4141                                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    4242                                        </div><!-- .entry-content -->
    43                                 </div><!-- #post-## -->
     43                                </div><!-- #post-<?php the_ID(); ?> -->
    4444
    4545                                <?php comments_template( '', true ); ?>
    4646
  • src/wp-content/themes/twentyten/loop-single.php

    diff --git a/src/wp-content/themes/twentyten/loop-single.php b/src/wp-content/themes/twentyten/loop-single.php
    index ee2ad47153..cff6a0bd6f 100644
    a b if ( have_posts() ) { 
    6969                                                        <?php twentyten_posted_in(); ?>
    7070                                                        <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    7171                                                </div><!-- .entry-utility -->
    72                                         </div><!-- #post-## -->
     72                                        </div><!-- #post-<?php the_ID(); ?> -->
    7373
    7474                                        <div id="nav-below" class="navigation">
    7575                                                <div class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'twentyten' ) . '</span> %title' ); ?></div>
  • src/wp-content/themes/twentyten/loop.php

    diff --git a/src/wp-content/themes/twentyten/loop.php b/src/wp-content/themes/twentyten/loop.php
    index fb97c12c41..8b205a804b 100644
    a b while ( have_posts() ) : 
    108108                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    109109                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    110110                        </div><!-- .entry-utility -->
    111                 </div><!-- #post-## -->
     111                </div><!-- #post-<?php the_ID(); ?> -->
    112112
    113113                <?php /* How to display posts of the Aside format. The asides category is the old way. */ ?>
    114114
    while ( have_posts() ) : 
    131131                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    132132                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    133133                        </div><!-- .entry-utility -->
    134                 </div><!-- #post-## -->
     134                </div><!-- #post-<?php the_ID(); ?> -->
    135135
    136136                <?php /* How to display all other posts. */ ?>
    137137
    while ( have_posts() ) : 
    180180                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    181181                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    182182                        </div><!-- .entry-utility -->
    183                 </div><!-- #post-## -->
     183                </div><!-- #post-<?php the_ID(); ?> -->
    184184
    185185                <?php comments_template( '', true ); ?>
    186186