-
Notifications
You must be signed in to change notification settings - Fork 11
/
page.php
74 lines (38 loc) · 1.77 KB
/
page.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
<?php get_header(); ?>
<div class="content">
<?php if ( have_posts() ) :
while ( have_posts() ) : the_post(); ?>
<div <?php post_class( 'post single' ); ?>>
<?php if ( has_post_thumbnail() ) : ?>
<?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail_size' ); $thumb_url = $thumb['0']; ?>
<div class="featured-media" style="background-image: url( <?php the_post_thumbnail_url( $post->ID, 'post-image' ); ?> );">
<?php the_post_thumbnail('post-image'); ?>
<?php
the_post_thumbnail( 'post-image' );
$image_caption = get_post( get_post_thumbnail_id() )->post_excerpt;
if ( $image_caption ) :
?>
<div class="media-caption-container">
<p class="media-caption"><?php echo $image_caption; ?></p>
</div>
<?php endif; ?>
</div> <!-- /featured-media -->
<?php endif; ?>
<div class="post-header section">
<div class="post-header-inner section-inner">
<?php the_title( '<h1 class="post-title">', '</h1>' ); ?>
</div><!-- .post-header-inner section-inner -->
</div><!-- .post-header section -->
<div class="post-content section-inner <?php truwriter_layout_width()?>">
<?php the_content(); ?>
<div class="clear"></div>
<?php wp_link_pages('before=<p class="page-links">' . __( 'Pages:', 'radcliffe' ) . ' &after=</p>&seperator= <span class="sep">/</span> '); ?>
</div>
</div><!-- .post -->
<?php
comments_template( '', true );
endwhile;
endif; ?>
<div class="clear"></div>
</div><!-- .content -->
<?php get_footer(); ?>