-
Notifications
You must be signed in to change notification settings - Fork 16
/
page.php
53 lines (50 loc) · 2.82 KB
/
page.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
<?php
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">
<li class="time_meta"><i class="fa fa-clock-o"></i> <?php the_time('Y-m-d H:i');?></li>
<?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">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="content-pager"><span class="pager_text">分页 : </span>', 'after' => '</div>', 'link_before' => '<span class="page_link">', 'link_after' => '</span>' ) ); ?>
</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 if(comments_open()) comments_template('', true); ?>
<?php endwhile; endif;?>
</div></div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>