Ticket #2653: 2653.2.diff
File 2653.2.diff, 1.0 KB (added by , 19 years ago) |
---|
-
wp-includes/template-functions-category.php
227 227 'order' => 'asc', 'style' => 'list', 'show_last_update' => 0, 228 228 'show_count' => 0, 'hide_empty' => 1, 'use_desc_for_title' => 1, 229 229 'child_of' => 0, 'feed' => '', 'feed_image' => '', 'exclude' => '', 230 'hierarchical' => false, 'title_li' => '');230 'hierarchical' => true, 'title_li' => ''); 231 231 $r = array_merge($defaults, $r); 232 232 $r['include_last_update_time'] = $r['show_date']; 233 233 extract($r); -
wp-content/themes/default/archives.php
17 17 18 18 <h2>Archives by Subject:</h2> 19 19 <ul> 20 <?php wp_list_cat s(); ?>20 <?php wp_list_categories(); ?> 21 21 </ul> 22 22 23 23 </div>