Make WordPress Core


Ignore:
Timestamp:
04/16/2019 01:29:20 AM (7 years ago)
Author:
SergeyBiryukov
Message:

Bundled Themes: Use consistent HTML comments after closing HTML tags.

Props iamdmitrymayorov.
Fixes #46871.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyten/loop.php

    r44574 r45209  
    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. */ ?>
     
    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. */ ?>
     
    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 ); ?>
Note: See TracChangeset for help on using the changeset viewer.