File: /homepages/35/d967185540/htdocs/clickandbuilds/CEU/wp-content/themes/celebrityproject/single.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package CelebrityProject
*/
get_header();
?>
<Section class="blog-with-sidebar">
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-9">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content', get_post_type() );
the_post_navigation(
array(
'prev_text' => '<span class="nav-subtitle">' . esc_html__( 'Previous:', 'zoom-insurance' ) . '</span> <span class="nav-title">%title</span>',
'next_text' => '<span class="nav-subtitle">' . esc_html__( 'Next:', 'zoom-insurance' ) . '</span> <span class="nav-title">%title</span>',
)
);
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile; // End of the loop.
?>
</div>
<div class="col-md-12 col-lg-3">
<div class="sidebar-blog">
<?php dynamic_sidebar('blog_sidebar'); ?>
</div>
</div>
</div>
</div>
</Section>
<?php
//get_sidebar();
get_footer();