-
Notifications
You must be signed in to change notification settings - Fork 2
/
pagetpl-archives.php
executable file
·52 lines (34 loc) · 1.22 KB
/
pagetpl-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: Site Archives
*/
?>
<?php get_header(); ?>
<div id="content" class="section">
<?php arras_above_content() ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php arras_above_post() ?>
<div <?php arras_single_post_class() ?>>
<?php arras_postheader() ?>
<div class="entry-content clearfix">
<h3><?php _e('Recent Posts', 'arras') ?></h3>
<ul><?php wp_get_archives('type=postbypost&limit=20') ?></ul>
<h3><?php _e('Monthly Archives', 'arras') ?></h3>
<ul><?php wp_get_archives('type=monthly&show_post_count=1') ?></ul>
<h3><?php _e('Pages', 'arras') ?></h3>
<ul><?php wp_list_pages('title_li=') ?></ul>
<h3><?php _e('Categories', 'arras') ?></h3>
<ul><?php wp_list_categories('title_li=') ?></ul>
<h3><?php _e('Authors', 'arras') ?></h3>
<ul><?php wp_list_authors('exclude_admin=0&optioncount=1&title_li=') ?></ul>
</div>
<?php arras_postfooter() ?>
</div>
<?php arras_below_post() ?>
<?php endwhile; else: ?>
<?php arras_post_notfound() ?>
<?php endif; ?>
<?php arras_below_content() ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>