Make WordPress Core


Ignore:
Timestamp:
06/17/2006 12:05:00 AM (19 years ago)
Author:
ryan
Message:

Use wp_list_categories() in templates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/classic/sidebar.php

    r3880 r3881  
    44
    55<ul>
    6     <?php wp_list_pages(); ?>
    7     <?php wp_list_bookmarks(); ?>
    8  <li id="categories"><?php _e('Categories:'); ?>
    9     <ul>
    10     <?php wp_list_cats(); ?>
    11     </ul>
    12  </li>
     6    <?php wp_list_pages('title_li=' . __('Pages:')); ?>
     7    <?php wp_list_bookmarks('title_after=&title_before='); ?>
     8    <?php wp_list_categories('title_li=' . __('Categories:')); ?>
    139 <li id="search">
    1410   <label for="s"><?php _e('Search:'); ?></label>
Note: See TracChangeset for help on using the changeset viewer.