Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfifteen/comments.php

    r41761 r42343  
    2727            <?php
    2828                $comments_number = get_comments_number();
    29                 if ( '1' === $comments_number ) {
    30                     /* translators: %s: post title */
    31                     printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentyfifteen' ), get_the_title() );
    32                 } else {
    33                     printf(
    34                         /* translators: 1: number of comments, 2: post title */
    35                         _nx(
    36                             '%1$s thought on &ldquo;%2$s&rdquo;',
    37                             '%1$s thoughts on &ldquo;%2$s&rdquo;',
    38                             $comments_number,
    39                             'comments title',
    40                             'twentyfifteen'
    41                         ),
    42                         number_format_i18n( $comments_number ),
    43                         get_the_title()
    44                     );
    45                 }
     29            if ( '1' === $comments_number ) {
     30                /* translators: %s: post title */
     31                printf( _x( 'One thought on &ldquo;%s&rdquo;', 'comments title', 'twentyfifteen' ), get_the_title() );
     32            } else {
     33                printf(
     34                    /* translators: 1: number of comments, 2: post title */
     35                    _nx(
     36                        '%1$s thought on &ldquo;%2$s&rdquo;',
     37                        '%1$s thoughts on &ldquo;%2$s&rdquo;',
     38                        $comments_number,
     39                        'comments title',
     40                        'twentyfifteen'
     41                    ),
     42                    number_format_i18n( $comments_number ),
     43                    get_the_title()
     44                );
     45            }
    4646            ?>
    4747        </h2>
     
    5151        <ol class="comment-list">
    5252            <?php
    53                 wp_list_comments( array(
    54                     'style'       => 'ol',
    55                     'short_ping'  => true,
    56                     'avatar_size' => 56,
    57                 ) );
     53                wp_list_comments(
     54                    array(
     55                        'style'       => 'ol',
     56                        'short_ping'  => true,
     57                        'avatar_size' => 56,
     58                    )
     59                );
    5860            ?>
    5961        </ol><!-- .comment-list -->
     
    6567    <?php
    6668        // If comments are closed and there are comments, let's leave a little note, shall we?
    67         if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
     69    if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) :
    6870    ?>
    69         <p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfifteen' ); ?></p>
     71    <p class="no-comments"><?php _e( 'Comments are closed.', 'twentyfifteen' ); ?></p>
    7072    <?php endif; ?>
    7173
Note: See TracChangeset for help on using the changeset viewer.