mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
26 lines
352 B
PHP
26 lines
352 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_categories(); ?>
|
||
|
</ul>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<?php get_footer(); ?>
|