-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.php
executable file
·52 lines (34 loc) · 943 Bytes
/
archives.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
/*
Template Name: Archives
*/
?>
<?php get_header(); ?>
<div class="post">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="date" id="post-<?php the_ID(); ?>">
<h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h2></div>
<div class="rightcol">
<h2>Archives by Month:</h2>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="leftcol">
<h2>Archives by Subject:</h2>
<ul>
<?php wp_list_cats(); ?>
</ul>
</div>
<div style="clear:both;"></div>
</div><!-- end of post -->
<?php endwhile; ?>
<?php else : ?>
<div class="post">
<div class="date"Not Found</div>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
</div><!-- end of post -->
<?php endif; ?>
<?php get_footer(); ?>