public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / archives.php
100755 26 lines (18 sloc) 0.352 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/*
Template Name: Archives
*/
?>
 
<?php get_header(); ?>
 
<div id="content" class="widecolumn">
 
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
 
<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(); ?>