-
Notifications
You must be signed in to change notification settings - Fork 1
/
archive.php
59 lines (38 loc) · 991 Bytes
/
archive.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
53
54
55
56
57
58
59
<?php
/*
* Omnibus Prime archive file: archive.php
*
* @package Omnibus Prime
* @since 1.0
* @version 1.0
*/
get_header();
?>
<div class="grid">
<main id="main__content" class="h-feed col-xs-12" role="main">
<h2><?php _e( 'Archive', 'omnibus-prime' ); ?></h2>
<section id="archive__search">
<h3><?php _e( 'Search', 'omnibus-prime' ); ?></h3>
<?php get_search_form(); ?>
</section>
<hr>
<section id="archive__months">
<h3><?php _e( 'Posts by Month:', 'omnibus-prime' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=monthly' ); ?>
</ul>
</section>
<hr>
<section id="archive__categories">
<h3><?php _e( 'Posts by category:', 'omnibus-prime' ); ?></h3>
<ul>
<?php
wp_list_categories( array(
'title_li' => ''
) );
?>
</ul>
</section>
</main>
</div>
<?php get_footer(); ?>