<?php /** * The template for displaying all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package eCommerce_Market */ get_header(); ?> <div class="container"> <div class="row"> <?php $layout_class ='col-8'; $sidebar_layout = ecommerce_market_get_option('layout_options'); if( is_active_sidebar('sidebar-1') && 'no-sidebar' !== $sidebar_layout){ $layout_class = 'custom-col-8'; } else{ $layout_class = 'custom-col-12'; } ?> <div id="primary" class="content-area <?php echo esc_attr( $layout_class);?> "> <main id="main" class="site-main"> <div class="post-item-wrapper"> <div class="theiaStickySidebar"> <?php while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', 'single' ); the_post_navigation( array( 'prev_text' => esc_html__( 'Prev', 'ecommerce-market' ), 'next_text' => esc_html__( 'Next', 'ecommerce-market' ), ) ); // 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> </div> </main><!-- #main --> </div><!-- #primary --> <?php get_sidebar();?> </div> </div> <?php get_footer();