Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/public_html/wp-content/themes/puca/page-templates/ |
Upload File : |
<?php /** * The template for displaying pages * * This is the template that displays all pages by default. * Please note that this is the WordPress construct of pages and that * other "pages" on your WordPress site will use a different template. * * @package WordPress * @subpackage Puca * @since Puca 1.3.6 */ /* *Template Name: Page Sidebar */ get_header(); $sidebar_configs = puca_tbay_get_page_layout_configs(); puca_tbay_render_breadcrumbs(); if ( isset($sidebar_configs['left']) && !isset($sidebar_configs['right']) ) { $sidebar_configs['main']['class'] .= ' pull-right'; } ?> <section id="main-container" class="main-content <?php echo apply_filters('puca_tbay_page_content_class', 'container');?> inner"> <div class="row"> <?php if ( isset($sidebar_configs['left']) && isset($sidebar_configs['right']) ) : ?> <div class="<?php echo esc_attr($sidebar_configs['left']['class']) ;?>"> <aside class="sidebar sidebar-left" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"> <?php dynamic_sidebar( $sidebar_configs['left']['sidebar'] ); ?> </aside> </div> <?php endif; ?> <div id="main-content" class="main-page <?php echo esc_attr($sidebar_configs['main']['class']); ?>"> <div id="main" class="site-main"> <?php // Start the loop. while ( have_posts() ) : the_post(); // Include the page content template. the_content(); // 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; // End the loop. endwhile; ?> </div><!-- .site-main --> </div><!-- .content-area --> <?php if ( isset($sidebar_configs['left']) && !isset($sidebar_configs['right']) ) : ?> <div class="<?php echo esc_attr($sidebar_configs['left']['class']) ;?>"> <aside class="sidebar sidebar-left" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"> <?php dynamic_sidebar( $sidebar_configs['left']['sidebar'] ); ?> </aside> </div> <?php endif; ?> <?php if ( isset($sidebar_configs['right']) ) : ?> <div class="<?php echo esc_attr($sidebar_configs['right']['class']) ;?>"> <aside class="sidebar sidebar-right" itemscope="itemscope" itemtype="http://schema.org/WPSideBar"> <?php dynamic_sidebar( $sidebar_configs['right']['sidebar'] ); ?> </aside> </div> <?php endif; ?> </div> </section> <?php get_footer(); ?>