This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/single.php

35 lines
773 B
PHP
Raw Normal View History

2012-01-07 03:25:13 +00:00
<?php
/**
* The template for displaying all single posts.
2012-01-07 03:25:13 +00:00
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
2012-01-07 03:25:13 +00:00
* @package _s
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
2012-01-07 03:25:13 +00:00
<?php while ( have_posts() ) : the_post(); ?>
2012-01-07 03:25:13 +00:00
<?php get_template_part( 'template-parts/content', 'single' ); ?>
2012-01-07 03:25:13 +00:00
<?php the_post_navigation(); ?>
2012-01-07 03:25:13 +00:00
<?php
2015-05-27 17:49:01 +00:00
// If comments are open or we have at least one comment, load up the comment template.
2014-10-15 00:57:47 +00:00
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>
2012-01-07 03:25:13 +00:00
2015-05-27 17:49:01 +00:00
<?php endwhile; // End of the loop. ?>
2012-01-07 03:25:13 +00:00
</main><!-- #main -->
</div><!-- #primary -->
2012-01-07 03:25:13 +00:00
<?php get_sidebar(); ?>
2014-10-15 00:57:47 +00:00
<?php get_footer(); ?>