2012-01-07 03:25:13 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2016-09-27 06:22:52 +00:00
|
|
|
* The template for displaying all single posts
|
2012-01-07 03:25:13 +00:00
|
|
|
*
|
2015-07-01 15:21:44 +00:00
|
|
|
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
|
|
|
|
*
|
2012-01-07 03:25:13 +00:00
|
|
|
* @package _s
|
|
|
|
*/
|
|
|
|
|
2017-08-01 20:27:46 +00:00
|
|
|
get_header();
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
<main id="primary" class="site-main">
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
2017-08-01 20:27:46 +00:00
|
|
|
while ( have_posts() ) :
|
|
|
|
the_post();
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2017-07-06 18:26:00 +00:00
|
|
|
get_template_part( 'template-parts/content', get_post_type() );
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2020-04-17 21:24:27 +00:00
|
|
|
the_post_navigation(
|
|
|
|
array(
|
|
|
|
'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Previous:', '_s' ) . '</span> <span class="nav-title">%title</span>',
|
|
|
|
'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Next:', '_s' ) . '</span> <span class="nav-title">%title</span>',
|
|
|
|
)
|
|
|
|
);
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
// If comments are open or we have at least one comment, load up the comment template.
|
|
|
|
if ( comments_open() || get_comments_number() ) :
|
|
|
|
comments_template();
|
|
|
|
endif;
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
endwhile; // End of the loop.
|
|
|
|
?>
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2018-01-02 22:57:02 +00:00
|
|
|
</main><!-- #main -->
|
2012-01-07 03:25:13 +00:00
|
|
|
|
2015-11-11 21:59:40 +00:00
|
|
|
<?php
|
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|