File: /home4/cca63905/.trash/wp-content/themes/accesspress-store/single.php
<?php
/**
* The template for displaying all single posts.
*
* @package AccessPress Store
*/
get_header();
global $post;
$single_post_layout = esc_attr( get_post_meta($post->ID, 'accesspress_store_sidebar_layout', true) );
if (empty($single_post_layout)) {
$single_post_layout = esc_attr( get_theme_mod('single_post_layout','right-sidebar') );
}
$breadcrumb = intval( get_theme_mod('breadcrumb_options_post','1') );
$archive_bread = esc_url( get_theme_mod('breadcrumb_post_image') );
$bread_archive = '';
if($archive_bread){
$bread_archive = $archive_bread;
}
if($breadcrumb == '1') :
?>
<div class="page_header_wrap clearfix" style="background:url('<?php echo esc_url($bread_archive); ?>') no-repeat center; background-size: cover;">
<div class="ak-container">
<header class="entry-header">
<?php the_title('<h2 class="entry-title">', '</h2>'); ?>
</header><!-- .entry-header -->
<?php accesspress_breadcrumbs() ?>
</div>
</div>
<?php endif; ?>
<div class="inner">
<main id="main" class="site-main clearfix <?php echo esc_attr($single_post_layout); ?>">
<?php if ($single_post_layout == 'both-sidebar'): ?>
<div id="primary-wrap" class="clearfix">
<?php endif; ?>
<div id="primary" class="content-area">
<?php while (have_posts()) : the_post(); ?>
<div class="content-inner clearfix">
<?php get_template_part('content', 'single'); ?>
</div>
<?php the_post_navigation(); ?>
<?php
// 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;
?>
<?php endwhile; // end of the loop. ?>
</div><!-- #primary -->
<?php
if ($single_post_layout == 'both-sidebar' || $single_post_layout == 'left-sidebar'):
get_sidebar('left');
endif;
?>
<?php if ($single_post_layout == 'both-sidebar'): ?>
</div>
<?php endif; ?>
<?php
if ($single_post_layout == 'both-sidebar' || $single_post_layout == 'right-sidebar'):
get_sidebar('right');
endif;
?>
</main><!-- #main -->
</div>
<?php get_footer();