home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-content / themes / default / archives.php < prev    next >
Encoding:
PHP Script  |  2006-11-19  |  352 b   |  26 lines

  1. <?php
  2. /*
  3. Template Name: Archives
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <div id="content" class="widecolumn">
  10.  
  11. <?php include (TEMPLATEPATH . '/searchform.php'); ?>
  12.  
  13. <h2>Archives by Month:</h2>
  14.     <ul>
  15.         <?php wp_get_archives('type=monthly'); ?>
  16.     </ul>
  17.  
  18. <h2>Archives by Subject:</h2>
  19.     <ul>
  20.          <?php wp_list_categories(); ?>
  21.     </ul>
  22.  
  23. </div>
  24.  
  25. <?php get_footer(); ?>
  26.