Share Pastebin
Guest
Public paste!

Guest67009

By: a guest | Feb 9th, 2010 | Syntax: None | Size: 0.41 KB | Hits: 49 | Expires: Never
Copy text to clipboard
  1. <?php get_header(); ?>
  2.  
  3. <div id="leftcol">
  4.   <div id="content">
  5.     <?php get_search_form(); ?>
  6.     <h2>Archives by Month:</h2>
  7.     <ul>
  8.       <?php wp_get_archives('type=monthly'); ?>
  9.     </ul>
  10.     <h2>Archives by Subject:</h2>
  11.     <ul>
  12.       <?php wp_list_categories(); ?>
  13.     </ul>
  14.   </div>
  15.   <!--end: content-->
  16. </div>
  17. <!--end: leftcol-->
  18. <?php include("page_sidebar.php"); ?>
  19. <?php get_footer(); ?>