-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpage-archives.php
59 lines (36 loc) · 1.45 KB
/
page-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
53
54
55
56
57
58
59
<?php
/*
Template Name: Archives Page
*/
?>
<?php get_header(); ?>
<!-- MAIN CONTENT -->
<div class="container">
<div class="row">
<aside class="span3 main-sidebar">
<?php get_sidebar(); ?>
</aside>
<div class="span9 article-container-fix">
<div class="articles">
<article class="clearfix">
<header>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php if(current_user_can('edit_post', $post->ID)){
edit_post_link(__('Edit This','yahya-framework'),'<p class="article-meta-extra">','</p>');
} ?>
</header>
<hr class="image-replacement">
<h4><?php _e('Archives by Month','yahya-framework'); ?></h4>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
<h4><?php _e('Archives by Subject','yahya-framework'); ?></h4>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</article>
</div> <!-- end articles -->
</div> <!-- end span9 -->
</div> <!-- End of articles-nav -->
</div>
<?php get_footer(); ?>