mirror of
git://develop.git.wordpress.org/
synced 2025-02-24 08:33:35 +01:00
git-svn-id: https://develop.svn.wordpress.org/trunk@2040 602fd350-edb4-49c9-b593-d223f7449a82
26 lines
355 B
PHP
26 lines
355 B
PHP
<?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_cats(); ?>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|