]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/classic/sidebar.php
Wordpress 2.3.2
[autoinstalls/wordpress.git] / wp-content / themes / classic / sidebar.php
index 6788dee90c35771bba48e2441d12d7b2145f10fe..e4a680abb67f5e2cdf4a2ad78d2cf9130cf89561 100644 (file)
@@ -3,15 +3,13 @@
 <div id="menu">
 
 <ul>
-       <?php wp_list_pages(); ?>
-       <?php get_links_list(); ?>
- <li id="categories"><?php _e('Categories:'); ?>
-       <ul>
-       <?php wp_list_cats(); ?>
-       </ul>
- </li>
+<?php  /* Widgetized sidebar, if you have the plugin installed. */
+               if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
+       <?php wp_list_pages('title_li=' . __('Pages:')); ?>
+       <?php wp_list_bookmarks('title_after=&title_before='); ?>
+       <?php wp_list_categories('title_li=' . __('Categories:')); ?>
  <li id="search">
-   <label for="s"><?php _e('Search:'); ?></label>      
+   <label for="s"><?php _e('Search:'); ?></label>
    <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
        <div>
                <input type="text" name="s" id="s" size="15" /><br />
        </form>
  </li>
  <li id="archives"><?php _e('Archives:'); ?>
-       <ul>
+       <ul>
         <?php wp_get_archives('type=monthly'); ?>
-       </ul>
+       </ul>
  </li>
  <li id="meta"><?php _e('Meta:'); ?>
-       <ul>
+       <ul>
                <?php wp_register(); ?>
                <li><?php wp_loginout(); ?></li>
-               <li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
-               <li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
+               <li><a href="<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
+               <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
                <li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
                <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
                <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
                <?php wp_meta(); ?>
        </ul>
  </li>
+<?php endif; ?>
 
 </ul>