-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
44 lines (38 loc) · 1.1 KB
/
page.php
File metadata and controls
44 lines (38 loc) · 1.1 KB
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
<?php
/***************************************
## Theme URI: http://www.chenxingweb.com/wp-theme-cx-udy.html
## Author: 晨星博客
## Author URI: http://www.chenxingweb.com
## Description: 简洁时尚自适应图片主题,适合各种图片展示类网站,有问题请加QQ群565616228请求帮助。
## Theme Name: CX-UDY
## Version: 0.1
****************************************/
wp_get_header();
while ( have_posts() ) : the_post();
?>
<div class="main">
<div class="main_inner">
<div class="main_left" style="width:100%">
<div class="item_title">
<h1> <?php the_title();?></h1>
<div class="single-cat"> <span>发布时间:</span> <?php the_time('Y-n-j');?></div>
</div>
<!--AD id:single_1002-->
<!--AD.end-->
<div class="content">
<div class="content_left">
<?php the_content();?>
</div>
</div>
<?php
endwhile;
/** 评论模板 **/
comments_template();
/** div.main_left **/
echo "</div>";
/** div.main_inner **/
echo "</div>";
/** div.main **/
echo "</div>";
/** 底部公共模板 **/
get_footer();