File: /home/mmickelson/martyknows.com/wp-content/themes/shaan/single.php
<?php get_header(); ?>
<?php
/**
* Shaan Layout Options
*/
$shaan_site_layout = get_theme_mod( 'shaan_site_layout' );
$shaan_layout_class = 'col-lg-8 col-md-12';
if( $shaan_site_layout == 'left-sidebar' && is_active_sidebar( 'sidebar-primary' ) ) :
$shaan_layout_class = 'col-lg-8 col-md-12 order-md-2';
elseif( $shaan_site_layout == 'no-sidebar' || !is_active_sidebar( 'sidebar-primary' ) ) :
$shaan_layout_class = 'col-lg-12 col-md-12';
endif;
?>
<div id="primary" class="content-area row row-eq-height">
<main id="main" class="site-main <?php echo esc_attr($shaan_layout_class); ?>" role="main">
<?php
// Start the loop
while( have_posts() ) : the_post();
// Include the single post content template.
get_template_part( 'template-parts/content', 'single' );
if( is_singular( 'attachment' ) ) {
// Parent post navigation.
the_post_navigation( array(
'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'shaan' ),
) );
} elseif( is_singular( 'post' ) ) {
// Previous/next post navigation.
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'shaan' ) . '</span>' . '<span class="screen-reader-text">' . __( 'Next post:', 'shaan' ) . '</span> ' . '<span class="post-title">%title</span>' ,
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'shaan' ) . '</span>' . '<span class="screen-reader-text">' . __( 'Previous post:', 'shaan' ) . '</span> ' . '<span class="post-title">%title</span>' ,
) );
}
// If comments are open or we have at least one comment, load up the comment template.
if( comments_open() || get_comments_number() ) {
comments_template();
}
// End the loop
endwhile;
?>
</main><!-- .site-main -->
<?php get_sidebar(); ?>
</div><!-- content-area -->
<?php get_footer(); ?>