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 404 pages (Not Found).
* The template for displaying 404 pages (not found).
*
* @package _s
*/

View File

@ -1,6 +1,6 @@
<?php
/**
* The template for displaying Archive pages.
* The template for displaying archive pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*

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(
wp_list_comments(
array(
'style' => 'ol',
'short_ping' => true,
) );
)
);
?>
</ol><!-- .comment-list -->

View File

@ -1,6 +1,6 @@
<?php
/**
* The template for displaying Search Results pages.
* The template for displaying search results pages.
*
* @package _s
*/

View File

@ -1,6 +1,6 @@
<?php
/**
* The Sidebar containing the main widget areas.
* The sidebar containing the main widget areas.
*
* @package _s
*/

View File

@ -1,6 +1,6 @@
<?php
/**
* The Template for displaying all single posts.
* The template for displaying all single posts.
*
* @package _s
*/