Make WordPress Core

Ticket #12695: 12695-comment.diff

File 12695-comment.diff, 7.8 KB (added by zeo, 15 years ago)

Refresh patch. Corrected various end / closing comment. Extra: adds padding to class nopassword.

  • wp-content/themes/twentyten/footer.php

     
    33 * The template for displaying the footer.
    44 *
    55 * Contains the closing of the id=main div and all content
    6  * after.  Calls sidebar-footer.php for bottom widgets.
     6 * after. Calls sidebar-footer.php for bottom widgets.
    77 *
    88 * @package WordPress
    99 * @subpackage Twenty_Ten
  • wp-content/themes/twentyten/style.css

     
    902902        font-size: 20px;
    903903        margin-bottom: 0;
    904904}
     905.nopassword,
    905906h3#comments-title {
    906907        padding: 24px 0;
    907908}
     
    13341335        .home .sticky {
    13351336                border: none;
    13361337        }
    1337 }
    1338  No newline at end of file
     1338}
  • wp-content/themes/twentyten/author.php

     
    3232                                        <div id="entry-author-info">
    3333                                                <div id="author-avatar">
    3434                                                        <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'twentyten_author_bio_avatar_size', 60 ) ); ?>
    35                                                 </div><!-- #author-avatar       -->
     35                                                </div><!-- #author-avatar -->
    3636                                                <div id="author-description">
    3737                                                        <h2><?php printf( __( 'About %s', 'twentyten' ), get_the_author() ); ?></h2>
    3838                                                        <?php the_author_meta( 'description' ); ?>
    3939                                                </div><!-- #author-description  -->
    40                                         </div><!-- .entry-author-info -->
     40                                        </div><!-- #entry-author-info -->
    4141<?php endif; ?>
    4242
    4343<?php
  • wp-content/themes/twentyten/loop.php

     
    22/**
    33 * The loop that displays posts.
    44 *
    5  * The loop displays the posts and the post content.  See
     5 * The loop displays the posts and the post content. See
    66 * http://codex.wordpress.org/The_Loop to understand it and
    77 * http://codex.wordpress.org/Template_Tags to understand
    88 * the tags used in it.
     
    8282                                <span class="meta-sep">|</span>
    8383                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    8484                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    85                         </div><!-- #entry-utility -->
     85                        </div><!-- .entry-utility -->
    8686                </div>
    8787
    8888<?php /* How to display posts in the asides category */ ?>
     
    105105                                <span class="meta-sep">|</span>
    106106                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    107107                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    108                         </div><!-- #entry-utility -->
     108                        </div><!-- .entry-utility -->
    109109                </div><!-- #post-(id) -->
    110110
    111111<?php /* How to display all other posts. */ ?>
     
    147147                                <?php endif; ?>
    148148                                <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'twentyten' ), __( '1 Comment', 'twentyten' ), __( '% Comments', 'twentyten' ) ); ?></span>
    149149                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?>
    150                         </div><!-- #entry-utility -->
    151                 </div><!-- #post-<?php the_ID(); ?> -->
     150                        </div><!-- .entry-utility -->
     151                </div><!-- #post-(id) -->
    152152
    153153                <?php comments_template( '', true ); ?>
    154154
  • wp-content/themes/twentyten/onecolumn-page.php

     
    2727                                                <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
    2828                                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    2929                                        </div><!-- .entry-content -->
    30                                 </div><!-- #post-<?php the_ID(); ?> -->
     30                                </div><!-- #post-(id) -->
    3131
    3232                                <?php comments_template( '', true ); ?>
    3333
  • wp-content/themes/twentyten/page.php

     
    3232                                                <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
    3333                                                <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
    3434                                        </div><!-- .entry-content -->
    35                                 </div><!-- #post-<?php the_ID(); ?> -->
     35                                </div><!-- #post-(id) -->
    3636
    3737                                <?php comments_template( '', true ); ?>
    3838
  • wp-content/themes/twentyten/single.php

     
    4646                                                                </a>
    4747                                                        </div><!-- #author-link -->
    4848                                                </div><!-- #author-description -->
    49                                         </div><!-- .entry-author-info -->
     49                                        </div><!-- #entry-author-info -->
    5050<?php endif; ?>
    5151
    5252                                        <div class="entry-utility">
  • wp-content/themes/twentyten/comments.php

     
    33 * The template for displaying Comments.
    44 *
    55 * The area of the page that contains both current comments
    6  * and the comment form.  The actual display of comments is
     6 * and the comment form. The actual display of comments is
    77 * handled by a callback to twentyten_comment which is
    88 * located in the functions.php file.
    99 *
     
    1616                        <div id="comments">
    1717<?php if ( post_password_required() ) : ?>
    1818                                <div class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'twentyten' ); ?></div>
    19                         </div><!-- .comments -->
     19                        </div><!-- #comments -->
    2020<?php
    2121                /* Stop the rest of comments.php from being processed,
    2222                 * but don't kill the script entirely -- we still have
     
    7070        if ( ! comments_open() ) :
    7171?>
    7272        <p class="nocomments"><?php _e( 'Comments are closed.', 'twentyten' ); ?></p>
    73 <?php endif; // end ! comments_opened() ?>
     73<?php endif; // end ! comments_open() ?>
    7474
    7575<?php endif; // end have_comments() ?>
    7676
  • wp-content/themes/twentyten/attachment.php

     
    8282<?php else : ?>
    8383                                                <a href="<?php echo wp_get_attachment_url(); ?>" title="<?php echo esc_attr( get_the_title() ); ?>" rel="attachment"><?php echo basename( get_permalink() ); ?></a>
    8484<?php endif; ?>
    85                                                 </div>
     85                                                </div><!-- .entry-attachment -->
    8686                                                <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div>
    8787
    8888<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentyten' ) ); ?>
     
    9494                                                <?php twentyten_posted_in(); ?>
    9595                                                <?php edit_post_link( __( 'Edit', 'twentyten' ), ' <span class="edit-link">', '</span>' ); ?>
    9696                                        </div><!-- .entry-utility -->
    97                                 </div><!-- #post-<?php the_ID(); ?> -->
     97                                </div><!-- #post-(id) -->
    9898
    9999<?php comments_template(); ?>
    100100