JezK
Edit File: index.php
<?php /** * The main template file. * * @package Ecommerce Bazaar */ get_header(); ecommerce_bazaar_before_title(); if(true===get_theme_mod( 'ecommerce_bazaar_enable_page_title',true)) : do_action('ecommerce_bazaar_get_page_title',true,false,false,false); endif; ecommerce_bazaar_after_title(); ?> <div id="primary" class="content-area"> <div id="main" class="site-main" role="main"> <div class="container-inner"> <div id="blog-section"> <div class="container"> <div class="row"> <?php if('right'===esc_html(get_theme_mod('ecommerce_bazaar_blog_sidebar_layout','right'))){ ?> <?php if( is_active_sidebar('sidebar-1')){ ?> <div id="post-wrapper" class="col-md-9"> <?php if(have_posts()) { while(have_Posts() ) { the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content',get_post_format()); } ?> <nav class="pagination"> <?php the_posts_pagination(); ?> </nav> <?php } ?> </div> <div id="sidebar-wrapper" class="col-md-3"> <?php get_sidebar('sidebar-1'); ?> </div> <?php } else{ ?> <div class="col-md-12"> <?php if(have_posts()) { while(have_posts()){ the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content',get_post_format()); } ?> <nav class="pagination"> <?php the_posts_pagination(); ?> </nav> <?php } ?> </div> <?php } ?> <?php } else if('left'=== esc_html(get_theme_mod('ecommerce_bazaar_blog_sidebar_layout','right'))) { ?> <?php if(is_active_sidebar('sidebar-1')){ ?> <div id="sidebar-wrapper" class="col-md-3"> <?php get_sidebar('sidebar-1'); ?> </div> <div id="post-wrapper" class="col-md-9"> <?php if(have_posts()) { while(have_Posts() ) { the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content',get_post_format()); } ?> <nav class="pagination"> <?php the_posts_pagination(); ?> </nav> <?php } ?> </div> <?php } else{ ?> <div class="col-md-12"> <?php if(have_posts()) { while(have_posts()){ the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content',get_post_format()); } ?> <nav class="pagination"> <?php the_posts_pagination(); ?> </nav> <?php } ?> </div> <?php } ?> <?php } else{ ?> <div class="col-md-12"> <?php if(have_posts()) { while(have_posts()) { the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content',get_post_format()); } ?> <nav class="pagination"> <?php the_posts_pagination(); ?> </nav> <?php } ?> </div> <?php } ?> </div> </div> </div> </div> </div> </div> <?php get_footer();