forked from lichuanqi/wordpress_theme_dmeng_plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
25 lines (23 loc) · 902 Bytes
/
Copy pathsingle.php
File metadata and controls
25 lines (23 loc) · 902 Bytes
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
<?php
/*
* 欢迎来到代码世界,如果你想修改多梦主题的代码,那我猜你是有更好的主意了~
* 那么请到多梦网络( http://www.dmeng.net/ )说说你的想法,数以万计的童鞋们会因此受益哦~
* 同时,你的名字将出现在多梦主题贡献者名单中,并有一定的积分奖励~
* 注释和代码同样重要~
* @author 多梦 @email chihyu@aliyun.com
*/
get_header(); ?>
<?php get_header('masthead'); ?>
<div id="main" class="container" role="main" itemscope itemprop="mainContentOfPage" itemtype="http://schema.org/Blog">
<div class="row">
<?php
while ( have_posts() ) : the_post();
get_template_part('content');
endwhile; // end of the loop.
dmeng_paginate();
?>
<?php get_sidebar();?>
</div>
</div><!-- #main -->
<?php get_footer('colophon'); ?>
<?php get_footer(); ?>