forked from mirror/_s
Add trailing commas to the last elements of arrays
This commit is contained in:
parent
7be757759c
commit
c780bc0559
2
404.php
2
404.php
|
@ -32,7 +32,7 @@ get_header(); ?>
|
||||||
'order' => 'DESC',
|
'order' => 'DESC',
|
||||||
'show_count' => 1,
|
'show_count' => 1,
|
||||||
'title_li' => '',
|
'title_li' => '',
|
||||||
'number' => 10
|
'number' => 10,
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<?php
|
<?php
|
||||||
wp_link_pages( array(
|
wp_link_pages( array(
|
||||||
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
||||||
'after' => '</div>'
|
'after' => '</div>',
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<?php
|
<?php
|
||||||
wp_link_pages( array(
|
wp_link_pages( array(
|
||||||
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
||||||
'after' => '</div>'
|
'after' => '</div>',
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<?php
|
<?php
|
||||||
wp_link_pages( array(
|
wp_link_pages( array(
|
||||||
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
||||||
'after' => '</div>'
|
'after' => '</div>',
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-content -->
|
</div><!-- .entry-content -->
|
||||||
|
|
|
@ -93,7 +93,7 @@ get_header();
|
||||||
<?php
|
<?php
|
||||||
wp_link_pages( array(
|
wp_link_pages( array(
|
||||||
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
|
||||||
'after' => '</div>'
|
'after' => '</div>',
|
||||||
) );
|
) );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
|
@ -99,7 +99,7 @@ function _s_comment( $comment, $args, $depth ) {
|
||||||
<?php
|
<?php
|
||||||
comment_reply_link( array_merge( $args,array(
|
comment_reply_link( array_merge( $args,array(
|
||||||
'depth' => $depth,
|
'depth' => $depth,
|
||||||
'max_depth' => $args['max_depth']
|
'max_depth' => $args['max_depth'],
|
||||||
) ) );
|
) ) );
|
||||||
?>
|
?>
|
||||||
</div><!-- .reply -->
|
</div><!-- .reply -->
|
||||||
|
|
Reference in New Issue