itworksb5/single.php
2021-01-27 16:19:31 -05:00

26 lines
527 B
PHP

<?php
/**
* The template for displaying all single posts
*/
get_header(); ?>
<main id="main" class="site-main container section" role="main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_format() );
// 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 -->
<?php
get_footer();