home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-content / themes / classic / sidebar.php < prev    next >
Encoding:
PHP Script  |  2007-03-31  |  1.8 KB  |  43 lines

  1.  
  2. <!-- begin sidebar -->
  3. <div id="menu">
  4.  
  5. <ul>
  6. <?php     /* Widgetized sidebar, if you have the plugin installed. */
  7.         if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
  8.     <?php wp_list_pages('title_li=' . __('Pages:')); ?>
  9.     <?php wp_list_bookmarks('title_after=&title_before='); ?>
  10.     <?php wp_list_categories('title_li=' . __('Categories:')); ?>
  11.  <li id="search">
  12.    <label for="s"><?php _e('Search:'); ?></label>
  13.    <form id="searchform" method="get" action="<?php bloginfo('home'); ?>">
  14.     <div>
  15.         <input type="text" name="s" id="s" size="15" /><br />
  16.         <input type="submit" value="<?php _e('Search'); ?>" />
  17.     </div>
  18.     </form>
  19.  </li>
  20.  <li id="archives"><?php _e('Archives:'); ?>
  21.     <ul>
  22.      <?php wp_get_archives('type=monthly'); ?>
  23.     </ul>
  24.  </li>
  25.  <li id="meta"><?php _e('Meta:'); ?>
  26.     <ul>
  27.         <?php wp_register(); ?>
  28.         <li><?php wp_loginout(); ?></li>
  29.         <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>
  30.         <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>
  31.         <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>
  32.         <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  33.         <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>
  34.         <?php wp_meta(); ?>
  35.     </ul>
  36.  </li>
  37. <?php endif; ?>
  38.  
  39. </ul>
  40.  
  41. </div>
  42. <!-- end sidebar -->
  43.