wordpress/php-fpm/wordpress_files/themes/bushwick/single.php

33 lines
639 B
PHP
Raw Normal View History

2020-05-22 03:40:23 +02:00
<?php
/**
* The Template for displaying all single posts.
*
* @package Bushwick
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main">
<?php
get_template_part( 'navigation' );
while ( have_posts() ) :
the_post();
get_template_part( 'content', 'single' );
// 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;
endwhile; // End of the loop.
?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer();