wp386-child/archives.php

35 lines
761 B
PHP
Raw Normal View History

2018-04-16 14:14:42 -04:00
<?php
/*
Template Name: Archives
2019-03-31 09:09:11 -04:00
*/
?>
2018-04-16 14:14:42 -04:00
2019-03-31 09:09:11 -04:00
<?php get_header();?>
2018-04-16 14:14:42 -04:00
<div id="container">
<div id="content" role="main">
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
2019-03-31 09:09:11 -04:00
<div><?php get_search_form();?></div>
2018-04-16 14:14:42 -04:00
<table>
<tr>
2019-03-31 09:09:11 -04:00
<th>By Month</th>
<th>By Subject</th>
</tr>
<tr>
<td style="vertical-align:top">
<ul><?php wp_get_archives( array('type' => 'monthly','format' => 'custom','after' => ' &ndash; ')); ?></ul>
<!--<?php //wp_get_archives('type=monthly'); ?>-->
2018-04-16 14:14:42 -04:00
</td>
2019-03-31 09:09:11 -04:00
<td style="vertical-align:top">
2018-04-16 14:14:42 -04:00
<ul><?php wp_list_categories(); ?></ul>
</td>
</tr>
</table>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>