-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
84 lines (77 loc) · 2.23 KB
/
single.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
<?php get_header();?>
<body class="u-single-page">
<!-- header begin -->
<div class="g-header">
<div class="u-container">
<!-- logo begin -->
<div class="g-logo">
<a href="<?php bloginfo('url'); ?>" class="s-normal-a-hover"><?php bloginfo('name'); ?></a>
</div>
<!-- nav begin -->
<nav>
<a class="g-hmg-nav" href="#">
<i class="g-line"></i>
<i class="g-line"></i>
<i class="g-line"></i>
</a>
<?php
if(function_exists('wp_nav_menu')) {
wp_nav_menu(array('theme_location'=>'','menu_class'=>'g-main-nav','container'=>'div'));
}
?>
<div class="u-clearfix"></div>
</nav>
</div>
</div>
<div class="u-container">
<?php if(have_posts()) :?>
<?php while (have_posts()) : the_post(); ?>
<div class="g-right u-left">
<!-- 板块大标题 -->
<div class="u-page-title">
<h1><?php the_title(); ?></h1>
<table>
<tr>
<td class="u-first-td"><p><span>时间</span></p></td>
<td><p><?php the_time('Y年n月j日') ?></p></td>
</tr>
<tr>
<td><p><span>分类</span></p></td>
<td><p><a href="#"><?php the_category(’, ‘) ?></a></p></td>
</tr>
<!--<tr>
<td><p><span>喜欢</span></p></td>
<td><p>共 22 次</p></td>
</tr>-->
<tr>
<td><p><span>评论</span></p></td>
<td><p><?php comments_popup_link('0 条', '1 条', '% 条', '', '已关闭'); ?></p></td>
</tr>
<tr>
<td><p><span>标签</span></p></td>
<td><p><?php the_tags('', ', ', ''); ?></td>
</tr>
</table>
</div>
<p class="g-copyright">MOCHIKO © 2017</p>
</div>
<div class="g-left u-right">
<div class="g-single-article">
<div class="g-article-body">
<?php echo the_content();?>
</div>
<div class="g-article-itrct">
<div class="g-like-num u-right">
<a href="#"><i class="fa fa-comment-o" aria-hidden="true"></i><?php comments_popup_link('0', '1', '%', '', '0'); ?></a>
</div>
<div class="g-comment-num u-right">
<a href="#"><i class="fa fa-heart-o" aria-hidden="true"></i>0</a>
</div>
<div class="u-clearfix"></div>
</div>
</div>
<?php comments_template(); ?>
</div>
<?php endwhile; endif;?>
</div>
<?php get_footer(); ?>