-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
78 lines (71 loc) · 2.84 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
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_header(); ?>
<div id="page-head" class="container-fluid inner-page">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="page-title"><?php echo the_title(); ?></div>
</div>
</div>
</div>
</div>
</div>
<div id="post-content" class="container-fluid">
<div class="container">
<div id="post-body" class="row">
<div id="post-holder" class="col-md-9">
<div id="post-1" class="post">
<div class="post-thumbnail">
<img src="<?php the_post_thumbnail_url(); ?>" class="post-image" alt="">
</div>
<h4 class="post-title"><?php echo the_title(); ?></h4>
<div class="meta">
<span class="view">10 Views</span><span class="like"><a href="#" class="like-btn">7 Like</a></span>
</div>
<div class="post-content">
<?php the_content(); ?>
</div>
</div>
</div>
<?php
endwhile;
wp_reset_postdata(); else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php
endif;
wp_reset_postdata();
?>
<div id="sidebar" class="col-md-3">
<div class="widget-area">
<div id="categories" class="widget">
<h3 class="widget-title">Categories</h3>
<div class="item">
<?php echo the_category(); ?>
</div>
</div>
<div id="popular-posts" class="widget">
<h3 class="widget-title">Popular Posts</h3>
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<div class="item row">
<div class="thumb col-xs-3">
<img src="images/post.jpg" alt="">
</div>
<div class="info col-xs-9">
<span class="date">January 21, 2016</span>
<span class="title">
<a href="#"><?php echo the_title(); ?></a>
</span>
</div>
</div>
<?php
endwhile;
wp_reset_postdata();
endif;
wp_reset_postdata(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php get_footer(); ?>