-
Notifications
You must be signed in to change notification settings - Fork 16
/
page-archives.php
93 lines (82 loc) · 3.72 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
/**
Template Name: Germ 文章归档特殊页面
*/
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<article <?php post_class('box'); ?>>
<header class="entry-header detail-page">
<h2 class="entry-name">
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<ul class="entry-meta">
<?php if(comments_open()) : ?>
<li class="comments_meta"><i class="fa fa-comments-o"></i> <?php comments_popup_link('暂无评论', '1 条评论', '% 条评论'); ?></li>
<?php endif; ?>
<li class="views_meta"><i class="fa fa-eye"></i> <a><?php mzw_post_views(' 访问量');?></a></li>
</ul>
</header>
<div class="entry-content" itemprop="description">
<div class="archives">
<?php $post0 = $post;
$previous_year = $year = 0;
$previous_month = $month = 0;
$ul_open = false;
$myposts = get_posts('numberposts=-1&orderby=post_date&order=DESC');
foreach($myposts as $post) :
setup_postdata($post);
$year = mysql2date('Y', $post->post_date);
$month = mysql2date('n', $post->post_date);
$day = mysql2date('j', $post->post_date);
if($year != $previous_year || $month != $previous_month) :
if($ul_open == true) :
echo '</ul>';
endif;
echo '<h3 class="m-title">'; echo the_time('Y-m'); echo '</h3>';
echo '<ul class="archives-monthlisting">';
$ul_open = true;
endif;
$previous_year = $year; $previous_month = $month;
?>
<li style="background: none;">
<a href="<?php the_permalink(); ?>"><span><?php the_time('Y-m-j'); ?></span>
<div class="atitle"><?php the_title(); ?></div></a>
</li>
<?php endforeach; ?>
</ul>
</div>
</div>
<footer class="entry-footer clearfix">
<span class="tag-links"><?php the_tags( '', '', '' ); ?></span>
<div class="post-share">
<a href="javascript:;"><i class="fa fa-share-alt"></i><?php _e('share', 'quench');?></a>
<ul>
<li><a href="http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank"><i class="fa fa-qq"></i></a></li>
<li><a href="http://service.weibo.com/share/share.php?title=<?php the_title(); ?>&url=<?php the_permalink(); ?>" target="_blank"><i class="fa fa-weibo"></i></a></li>
<li><a href="http://share.renren.com/share/buttonshare?link=<?php the_permalink(); ?>&title=<?php the_title(); ?>" target="_blank"><i class="fa fa-renren"></i></a></li>
<li><a href="http://twitter.com/share?url=<?php the_permalink(); ?>&text=<?php the_title(); ?>" target="_blank"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
<?php if( dopt('d_ding_b') != '' ) : ?>
<div class="post-love">
<a href="javascript:;" data-action="ding" data-id="<?php the_ID(); ?>" class="favorite post-love-link <?php if(isset($_COOKIE['mzw_ding_'.$post->ID])) echo ' done';?>" title="点个赞"><i class="fa fa-heart-o"></i>
<span class="love-count">
<?php
$ding_num = get_post_meta($post->ID,'mzw_ding',true);
echo $ding_num? $ding_num : '0';
?>
</span></a>
</div>
<?php endif; ?>
</footer>
</article>
<?php
$post = $post0;
if(comments_open())
comments_template('', true);
?>
<?php endwhile; endif;?>
</div></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>