Make WordPress Core

Ticket #23558: 23558.diff

File 23558.diff, 1.8 KB (added by cdog, 12 years ago)
  • wp-content/themes/twentythirteen/style.css

     
    22152215}
    22162216
    22172217.comment-author .fn,
     2218.comment-meta .fn,
    22182219.comment-reply-link {
    22192220        color: #ed331c;
    22202221        font-size: 14px;
    22212222        font-style: normal;
    22222223}
    22232224
     2225.comment-meta .fn a {
     2226        color: #f94a0a;
     2227}
     2228
    22242229.bypostauthor .fn:before {
    22252230        content: '\f408';
    22262231}
     
    22382243        width:         calc(100% - 124px);
    22392244}
    22402245
     2246.comment.no-avatar .comment-meta,
     2247.comment.no-avatar .comment-content,
     2248.comment.no-avatar .reply {
     2249        width: 100%;
     2250}
     2251
    22412252.comment-meta,
    22422253.comment-meta a {
    22432254        color: #a2a2a2;
  • wp-content/themes/twentythirteen/functions.php

     
    343343                // Proceed with normal comments.
    344344        ?>
    345345        <li id="li-comment-<?php comment_ID(); ?>">
    346                 <article id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>>
     346                <?php $show_avatars = get_option( 'show_avatars' ); ?>
     347                <article id="comment-<?php comment_ID(); ?>" <?php comment_class( $show_avatars ? '' : 'no-avatar' ); ?>>
     348                        <?php if ( $show_avatars) : ?>
    347349                        <div class="comment-author vcard">
    348350                                <?php echo get_avatar( $comment, 74 ); ?>
    349351                                <cite class="fn"><?php comment_author_link(); ?></cite>
    350352                        </div><!-- .comment-author -->
     353                        <?php endif; ?>
    351354
    352355                        <header class="comment-meta">
     356                                <?php if ( ! $show_avatars) : ?>
     357                                <cite class="fn"><?php comment_author_link(); ?></cite> &middot;
     358                                <?php endif; ?>
    353359                                <?php
    354360                                        printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>',
    355361                                                esc_url( get_comment_link( $comment->comment_ID ) ),