Minor code style clean-up

This commit is contained in:
Takashi Irie 2013-04-20 01:26:43 +01:00
parent a47b1523dd
commit 7be757759c
7 changed files with 40 additions and 7 deletions

10
404.php
View file

@ -26,7 +26,15 @@ get_header(); ?>
<div class="widget widget_categories">
<h2 class="widgettitle"><?php _e( 'Most Used Categories', '_s' ); ?></h2>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
<?php
wp_list_categories( array(
'orderby' => 'count',
'order' => 'DESC',
'show_count' => 1,
'title_li' => '',
'number' => 10
) );
?>
</ul>
</div><!-- .widget -->
<?php endif; ?>