-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.php
27 lines (18 loc) · 851 Bytes
/
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
<?php get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<nav class="nav-previous">
<?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'thechaseys' ) . '</span> %title' ); ?>
</nav>
<?php $next_post = get_next_post(); if (!empty( $next_post )): ?>
<nav class="nav-next">
<?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'thechaseys' ) . '</span>' ); ?>
</nav>
<?php endif; ?>
<?php get_footer(); ?>