-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloop-single.php
36 lines (36 loc) · 1.01 KB
/
loop-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
<?php
if (have_posts()):
while(have_posts()):
the_post();
?>
<div class="post">
<h1><?php the_title(); ?></h1>
<ul class="meta_links">
<li>By <?php the_author_posts_link(); ?></li>
</ul>
<hr>
<ul class="meta_links">
<li><span class="icon icon-calender"></span> <?php the_date(); ?></li>
<?php if (!is_page()): ?>
<li><span class="icon icon-tag"></span> <?php the_category(','); ?></li>
<?php endif; ?>
<li><span class="icon icon-comment"></span> <a href="<?php echo get_comments_link(); ?>"><?php comments_number(); ?></a></li>
</ul>
<hr class="space">
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<?php
the_content();
?>
<hr class="sep">
<?php comments_template(); ?>
<hr class="space">
<div class="clearfix"></div>
</div>
<?php
endwhile;
endif;
?>