mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
f05ee1844f
git-svn-id: http://svn.automattic.com/wordpress/trunk@12657 1a063a9b-81f0-0310-95a4-ce76da25c4cd
30 lines
398 B
PHP
30 lines
398 B
PHP
<?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(array('type' => 'monthly')); ?>
|
|
</ul>
|
|
|
|
<h2>Archives by Subject:</h2>
|
|
<ul>
|
|
<?php wp_list_categories(); ?>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<?php get_footer(); ?>
|