File: /www/wwwroot/aiwellbore.com/wp-content/themes/study-education-pro/single.php
<?php
/**
* The Template for displaying all single posts.
*
* @package Study Education Pro
*/
get_header();
$single_layout_theme_options = get_theme_mod('single_layout_theme_options', 'singleright');
?>
<style>
<?php
if( $single_layout_theme_options == 'singleleft' ){
echo '#sidebar { float:left !important; }';
}
?>
</style>
<div class="content-area">
<div class="middle-align">
<div class="site-main <?php echo $single_layout_theme_options; ?>" id="sitemain">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'single' ); ?>
<?php study_education_pro_content_nav( 'nav-below' ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div>
<?php
if( $single_layout_theme_options != 'sitefull' && $single_layout_theme_options != 'nosidebar' ){
get_sidebar('blog');
} ?>
<div class="clear"></div>
</div>
</div>
<?php get_footer();