forked from ShawnZeng1996/Memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
executable file
·83 lines (83 loc) · 3.2 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
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
<?php
/**
* ┌─┐┬ ┬┌─┐┬ ┬┌┐┌┌─┐┌─┐┌┐┌┌─┐ ┌─┐┌─┐┌┬┐
* └─┐├─┤├─┤││││││┌─┘├┤ ││││ ┬ │ │ ││││
* └─┘┴ ┴┴ ┴└┴┘┘└┘└─┘└─┘┘└┘└─┘o└─┘└─┘┴ ┴
*
* @package WordPress
* @Theme Memory
*
* @author [email protected]
* @link https://shawnzeng.com
*/
get_header();
setPostViews(get_the_ID());
?>
<div id="main">
<div id="main-part">
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
<article class="art">
<header class="art-header">
<?php echo get_avatar( get_the_author_meta( 'ID' ) ); ?>
<div class="right-box">
<h3 class="article-author"><?php the_author(); ?>
<i class="fa fa-check-circle"></i>
<span class="page-title">「<?php the_title(); ?>」</span>
</h3>
<div class="page-info">
<span class="art-info-view">
<i class="fa fa-eye"></i> <?php echo getPostViews(get_the_ID()); ?>
</span> •
<span class="art-info-comment">
<i class="fa fa-comment-o"></i> <?php comments_popup_link('0', '1', '%', '', '评论已关闭'); ?>
</span>
<span class="art-info-edit">
<?php edit_post_link('编辑', ' • ', ''); ?>
</span>
<?php
if( current_user_can( 'manage_options') )
if(d4v(get_permalink()) == 1)
$shoulu="• <i class='fa fa-paw'></i> <span>已收录</span>";
else
$shoulu="• <i class='fa fa-paw'> </i><span><a target='_blank' href='http://zhanzhang.baidu.com/sitesubmit/index?sitename=".get_permalink()."'>未收录!点此提交</a></span>";
echo $shoulu;
?>
</div>
</div>
</header>
<div class="art-main">
<div class="art-content">
<?php if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
the_content();
?>
</div>
<div class="article-info">
<span class="post-like">
<a href="javascript:;" data-action="ding" data-id="<?php the_ID(); ?>" class="favorite<?php if(isset($_COOKIE['memory_ding_'.$post->ID])) echo ' done';?>"><span class="count">
<?php if( get_post_meta($post->ID,'memory_ding',true) ){
echo get_post_meta($post->ID,'memory_ding',true);
} else {
echo '0';
}?></span>
</a>
</span>
<span class="share">
分享
</span>
<span class="dashang">
打赏
</span>
</div>
<div class="social-share" data-sites="<?php if( get_option('memory_share')!=null ) echo get_option('memory_share'); ?>"></div>
<script src="<?php bloginfo('template_url'); ?>/js/jquery.share.min.js"></script>
<?php memory_donate(); ?>
</div>
</article>
<?php endif; ?>
<?php comments_template(); ?>
</div>
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>