Correcting some irregular capitalisation and coding standards issues

This commit is contained in:
Jack Lenox 2014-06-25 00:13:36 +01:00
parent b6ad3b341a
commit 776eaf6e94
6 changed files with 18 additions and 14 deletions

View file

@ -1,6 +1,6 @@
<?php
/**
* The template for displaying Comments.
* The template for displaying comments.
*
* The area of the page that contains both current comments
* and the comment form.
@ -25,8 +25,10 @@ if ( post_password_required() ) {
<?php if ( have_comments() ) : ?>
<h2 class="comments-title">
<?php
printf( _nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', '_s' ),
number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>' );
printf(
_nx( 'One thought on &ldquo;%2$s&rdquo;', '%1$s thoughts on &ldquo;%2$s&rdquo;', get_comments_number(), 'comments title', '_s' ),
number_format_i18n( get_comments_number() ), '<span>' . get_the_title() . '</span>'
);
?>
</h2>
@ -40,10 +42,12 @@ if ( post_password_required() ) {
<ol class="comment-list">
<?php
wp_list_comments( array(
'style' => 'ol',
'short_ping' => true,
) );
wp_list_comments(
array(
'style' => 'ol',
'short_ping' => true,
)
);
?>
</ol><!-- .comment-list -->