]> scripts.mit.edu Git - autoinstalls/wordpress.git/blobdiff - wp-content/themes/default/archives.php
Wordpress 3.0.1-scripts
[autoinstalls/wordpress.git] / wp-content / themes / default / archives.php
index ae9d8dd293457fb36fbd6e826b48a6fca17f5cf4..20428056be136f1a9fe918e764279679115063b4 100644 (file)
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @package WordPress
+ * @subpackage Default_Theme
+ */
 /*
 Template Name: Archives
 */
@@ -8,18 +12,18 @@ Template Name: Archives
 
 <div id="content" class="widecolumn">
 
-<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+<?php get_search_form(); ?>
 
 <h2>Archives by Month:</h2>
-  <ul>
-    <?php wp_get_archives('type=monthly'); ?>
-  </ul>
+       <ul>
+               <?php wp_get_archives('type=monthly'); ?>
+       </ul>
 
 <h2>Archives by Subject:</h2>
-  <ul>
-     <?php wp_list_cats(); ?>
-  </ul>
+       <ul>
+                <?php wp_list_categories(); ?>
+       </ul>
 
-</div> 
+</div>
 
 <?php get_footer(); ?>