File: /home/lilleyandgillie.co.uk/public_html-20250117121400/wp-content/themes/it-company/single.php
<?php
/**
* The Template for displaying all single posts.
* @package IT Company
*/
get_header(); ?>
<div class="container">
<main id="maincontent" role="main" class="main-wrap-box py-5">
<?php
$it_company_left_right = get_theme_mod( 'it_company_single_post_layout','Right Sidebar');
if($it_company_left_right == 'Right Sidebar'){ ?>
<div class="row">
<div class="col-lg-9 col-md-8" id="wrapper">
<?php if(get_theme_mod('it_company_single_post_breadcrumb',true) != ''){ ?>
<div class="bradcrumbs">
<?php it_company_the_breadcrumb(); ?>
</div>
<?php }?>
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/single-post');
endwhile; // end of the loop.
wp_reset_postdata();?>
</div>
<div class="col-lg-3 col-md-4"><?php get_sidebar();?></div>
</div>
<?php }else if($it_company_left_right == 'Left Sidebar'){ ?>
<div class="row">
<div class="col-lg-3 col-md-4"><?php get_sidebar();?></div>
<div class="col-lg-9 col-md-8" id="wrapper">
<?php if(get_theme_mod('it_company_single_post_breadcrumb',true) != ''){ ?>
<div class="bradcrumbs">
<?php it_company_the_breadcrumb(); ?>
</div>
<?php }?>
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/single-post');
endwhile; // end of the loop.
wp_reset_postdata();?>
</div>
</div>
<?php }else if($it_company_left_right == 'One Column'){ ?>
<div id="wrapper">
<?php if(get_theme_mod('it_company_single_post_breadcrumb',true) != ''){ ?>
<div class="bradcrumbs">
<?php it_company_the_breadcrumb(); ?>
</div>
<?php }?>
<?php while ( have_posts() ) : the_post();
get_template_part( 'template-parts/single-post');
endwhile; // end of the loop.
wp_reset_postdata();?>
</div>
<?php }?>
<div class="clearfix"></div>
</main>
</div>
<?php get_footer(); ?>