Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r4152 r2206  
    44
    55<ul>
    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:')); ?>
     6    <?php wp_list_pages(); ?>
     7    <?php get_links_list(); ?>
     8 <li id="categories"><?php _e('Categories:'); ?>
     9    <ul>
     10    <?php wp_list_cats(); ?>
     11    </ul>
     12 </li>
    913 <li id="search">
    10    <label for="s"><?php _e('Search:'); ?></label>
    11    <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
     14   <label for="s"><?php _e('Search:'); ?></label>   
     15   <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    1216    <div>
    1317        <input type="text" name="s" id="s" size="15" /><br />
Note: See TracChangeset for help on using the changeset viewer.