Your IP : 13.58.32.115


Current Path : /home/church/public_html/launch100ar.com/wp-content/themes/editor-blocks/
Upload File :
Current File : /home/church/public_html/launch100ar.com/wp-content/themes/editor-blocks/single.php

<?php
/**
 * The template for displaying all single posts
 *
 * @link       https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
 *
 * @package    editor-blocks
 * @copyright  Copyright (c) 2018, Danny Cooper
 * @license    http://opensource.org/licenses/gpl-2.0.php GNU Public License
 */

get_header(); ?>

	<div class="content-area">

		<?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;

			editor_blocks_the_post_navigation();

		endwhile;
		?>

	</div><!-- .content-area -->

<?php
get_sidebar();
get_footer();