-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-blog.php
40 lines (29 loc) · 1.01 KB
/
single-blog.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
<?php get_header(); ?>
<div class="blog">
<div class="blog-ic">
<div class="blog-content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="blog-single">
<div class="blog-image">
<?php the_post_thumbnail('size-640x320'); ?>
<div class="blog-time">
<?php the_time('M'); ?><br>
<span class="time1"><?php the_time('d'); ?></span>
</div>
</div>
<div class="blog-title-ic">
<?php the_title(); ?>
</div>
<div class="blog-desc-ic">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; endif; ?>
<div class="comments"><?php comments_template(); ?></div>
</div>
<div class="blog-sidebar">
<?php dynamic_sidebar('Blog') ?>
</div>
</div>
</div>
<?php get_footer(); ?>