author | convert-repo |
Mon, 22 Mar 2010 10:49:29 +0000 | |
changeset 3 | ba1be1ffaa11 |
parent 1 | 0d28b7c10758 |
permissions | -rw-r--r-- |
<?php /** * @package WordPress * @subpackage Default_Theme */ /* Template Name: Archives */ ?> <?php get_header(); ?> <div id="content" class="widecolumn"> <?php get_search_form(); ?> <h2>Archives by Month:</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> <h2>Archives by Subject:</h2> <ul> <?php wp_list_categories(); ?> </ul> </div> <?php get_footer(); ?>