File: /home/countywedding.co.uk/public_html-20250117121004/wp-content/themes/business-roy/page.php
<?php
/**
* The template for displaying page
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Business Roy
*/
global $post;
$post_sidebar = get_post_meta( $post->ID, 'business_roy_page_layouts', true );
if(!$post_sidebar){
$post_sidebar = get_theme_mod( 'business_roy_page_sidebar','no' );
}
get_header(); ?>
<div class="container">
<div class="d-grid d-blog-grid-column-2 sidebar-<?php echo esc_attr($post_sidebar); ?>">
<?php if( $post_sidebar == 'left' && is_active_sidebar('sidebar-2') ){ get_sidebar('left'); } ?>
<div id="primary" class="content-area page-content">
<main id="main" class="site-main">
<div class="articlesListing">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', 'page' );
// 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.
?>
</div><!-- Articales Listings -->
</main><!-- #main -->
</div><!-- #primary -->
<?php if( $post_sidebar == 'right' && is_active_sidebar('sidebar-1') ){ get_sidebar('right'); } ?>
</div>
</div>
<?php get_footer();