📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 08:41:50
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
✏️
Editing: single.php
<?php /** * @package Case-Themes */ get_header(); $berich_sidebar = berich()->get_sidebar_args(['type' => 'post', 'content_col'=> '8']); ?> <div class="container"> <div class="row <?php echo esc_attr($berich_sidebar['wrap_class']) ?>"> <div id="pxl-content-area" class="<?php echo esc_attr($berich_sidebar['content_class']) ?>"> <main id="pxl-content-main"> <?php while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content/content-single', get_post_format() ); if ( comments_open() || get_comments_number() ) { comments_template(); } } ?> </main> </div> <?php if ($berich_sidebar['sidebar_class']) : ?> <div id="pxl-sidebar-area" class="<?php echo esc_attr($berich_sidebar['sidebar_class']) ?>"> <div class="pxl-sidebar-sticky"> <?php get_sidebar(); ?> </div> </div> <?php endif; ?> </div> </div> <?php get_footer();
💾 Save Changes
❌ Cancel