Make WordPress Core

Ticket #2653: 2653.2.diff

File 2653.2.diff, 1.0 KB (added by davidhouse, 19 years ago)
  • wp-includes/template-functions-category.php

     
    227227                'order' => 'asc', 'style' => 'list', 'show_last_update' => 0,
    228228                'show_count' => 0, 'hide_empty' => 1, 'use_desc_for_title' => 1,
    229229                'child_of' => 0, 'feed' => '', 'feed_image' => '', 'exclude' => '',
    230                 'hierarchical' => false, 'title_li' => '');
     230                'hierarchical' => true, 'title_li' => '');
    231231        $r = array_merge($defaults, $r);
    232232        $r['include_last_update_time'] = $r['show_date'];
    233233        extract($r);
  • wp-content/themes/default/archives.php

     
    1717
    1818<h2>Archives by Subject:</h2>
    1919  <ul>
    20      <?php wp_list_cats(); ?>
     20     <?php wp_list_categories(); ?>
    2121  </ul>
    2222
    2323</div>