File: /home/elrashedytravel/public_html/wp-content/themes/coffee-tea/templates/template-page-sidebar.php
<?php
/**
* Template Name: Page with Sidebar
*/
get_header(); ?>
<section id="post-section" class="blog-area inarea-blog-2-column-area three">
<div class="container">
<div class="row row-cols-1 gy-5">
<?php
$coffee_tea_single_page_sidebar_setting = get_theme_mod('coffee_tea_single_page_sidebar_setting','1');
$coffee_tea_content_class = ($coffee_tea_single_page_sidebar_setting == '') ? 'col-lg-12' : 'col-lg-8';
?>
<div class="<?php echo esc_attr($coffee_tea_content_class); ?>">
<?php the_post(); ?>
<article class="post-items">
<div class="post-content">
<?php
the_content();
?>
</div>
</article>
<?php
if( $post->comment_status == 'open' ) {
comments_template( '', true ); // show comments
}
?>
</div>
<?php if( $coffee_tea_single_page_sidebar_setting != '') { ?>
<?php get_sidebar(); ?>
<?php } ?>
</div>
</div>
</section>
<?php get_footer(); ?>