-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsingle.php
59 lines (34 loc) · 1.55 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
<?php
get_header(); // This fxn gets the header.php file and renders it ?>
<?php if ( have_posts() ) :
// Do we have any posts in the databse that match our query?
?>
<?php while ( have_posts() ) : the_post();
// If we have a post to show, start a loop that will display it
?>
<?php if ( has_post_thumbnail() ) { ?>
<div class="post-leftcol post-top1" style="<?php include (TEMPLATEPATH . '/includes/background.php' ); ?>" data-ix="scroll-hides-nav">
<?php } else { ?>
<div class="clearmenu"></div>
<?php } ?>
<div class="w-container">
<?php include (TEMPLATEPATH . '/includes/titleblock.php' ); ?>
</div>
</div>
<div class="post-rightcol post-top2">
<div class="w-container">
<article class="article">
<?php the_content(); ?>
</article>
<?php endwhile; // OK, let's stop the post loop once we've displayed it ?>
<?php
// If comments are open or we have at least one comment, load up the default comment template provided by Wordpress
if ( comments_open() || '0' != get_comments_number() )
comments_template( '', true );
?>
<?php else : // Well, if there are no posts to display and loop through, let's apologize to the reader (also your 404 error) ?>
<?php endif; // OK, I think that takes care of both scenarios (having a post or not having a post to show) ?>
</div>
</div>
<?php include (TEMPLATEPATH . '/includes/nextpost.php' ); ?>
<?php get_footer(); // This fxn gets the footer.php file and renders it ?>