-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
50 lines (35 loc) · 1.23 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
<?php get_header(); ?>
<div id="content">
<div class="container">
<div id="blog_cont">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1 class="single_title"><?php the_title(); ?></h1>
<?php /* <div class="next_prev_cont_top_right">
<div class="left">
<?php previous_post_link('%link',''); ?>
</div>
<div class="right">
<?php next_post_link('%link',''); ?>
</div>
</div> */ ?>
<?php the_content(); ?>
<br /><br />
<div class="next_prev_cont">
<div class="left">
<?php previous_post_link('%link', '<i>Previous post</i><br />%title'); ?>
</div>
<div class="right">
<?php next_post_link('%link', '<i>Next post</i><br />%title'); ?>
</div>
<div class="clear"></div>
</div><!--//next_prev_cont-->
<?php //comments_template(); ?>
<?php endwhile; else: ?>
<h3>Sorry, no posts matched your criteria.</h3>
<?php endif; ?>
<div class="clear"></div>
</div><!--//single_left-->
<div class="clear"></div>
</div> <!-- //container -->
</div><!--//content-->
<?php get_footer(); ?>