-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.php
More file actions
73 lines (38 loc) · 1.68 KB
/
Copy pathpage.php
File metadata and controls
73 lines (38 loc) · 1.68 KB
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
<?php get_header(); ?>
<div class="content section-inner">
<div class="posts">
<div class="post">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="content-inner<?php if ( comments_open() ) echo ' comments-allowed'; ?>">
<div class="post-header">
<?php if ( has_post_thumbnail() ) : ?>
<div class="featured-media">
<?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; ?>
<?php the_title( '<h1 class="post-title">', '</h1>' ); ?>
</div><!-- .post-header -->
<div class="post-content">
<?php the_content(); ?>
<?php wp_link_pages(); ?>
<?php if ( current_user_can( 'manage_options' ) ) : ?>
<p><?php edit_post_link( __( 'Edit', 'nayncuration' ) ); ?></p>
<?php endif; ?>
</div><!-- .post-content -->
</div><!-- .post-inner -->
<?php comments_template( '', true ); ?>
<?php endwhile; else: ?>
<p><?php _e( "We couldn't find any posts that matched your query. Please try again.", "nayncuration" ); ?></p>
<?php endif; ?>
</div><!-- .post -->
</div><!-- .posts -->
<div class="clear"></div>
</div><!-- .content section-inner -->
<?php get_footer(); ?>